Do not show deleted articles and suppliers for new deleiveries
This commit is contained in:
parent
d0e73ea1ff
commit
6e4b9696a2
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@
|
||||||
$('#new_stock_article').removeAttr('disabled').select2({
|
$('#new_stock_article').removeAttr('disabled').select2({
|
||||||
tags: true,
|
tags: true,
|
||||||
placeholder: '#{t '.create_stock_article'}',
|
placeholder: '#{t '.create_stock_article'}',
|
||||||
data: #{raw articles_for_select2(@supplier.articles).to_json},
|
data: #{raw articles_for_select2(@supplier.articles.undeleted).to_json},
|
||||||
createTag: function(data) {
|
createTag: function(data) {
|
||||||
return {
|
return {
|
||||||
id: 'new',
|
id: 'new',
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
= t '.new_delivery'
|
= t '.new_delivery'
|
||||||
%span.caret
|
%span.caret
|
||||||
%ul.dropdown-menu
|
%ul.dropdown-menu
|
||||||
- Supplier.order(:name).each do |supplier|
|
- Supplier.undeleted.order(:name).each do |supplier|
|
||||||
%li= link_to supplier.name, new_supplier_delivery_path(supplier), tabindex: -1
|
%li= link_to supplier.name, new_supplier_delivery_path(supplier), tabindex: -1
|
||||||
|
|
||||||
%table.table.table-hover#articles
|
%table.table.table-hover#articles
|
||||||
|
|
Loading…
Reference in a new issue