Offer _undeleted_ StockArticles for new OrderArticle only

This commit is contained in:
Julius 2013-12-31 12:35:30 +01:00
parent 4f80fd0e8c
commit 3819fa012e
1 changed files with 2 additions and 2 deletions

View File

@ -2,9 +2,9 @@ module Finance::OrderArticlesHelper
def new_order_articles_collection
if @order.stockit?
StockArticle.order('articles.name')
StockArticle.undeleted.reorder('articles.name')
else
@order.supplier.articles.undeleted.order('articles.name')
@order.supplier.articles.undeleted.reorder('articles.name')
end
end
end