Hide deleted stockarticles when creating new deliveries.
This commit is contained in:
parent
f640c673de
commit
7742403bbe
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ module DeliveriesHelper
|
|||
end
|
||||
|
||||
def stock_articles_for_select(supplier)
|
||||
supplier.stock_articles.collect {|a| ["#{a.name} (#{number_to_currency a.price}/#{a.unit})", a.id] }
|
||||
supplier.stock_articles.without_deleted.collect {|a| ["#{a.name} (#{number_to_currency a.price}/#{a.unit})", a.id] }
|
||||
end
|
||||
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue