Merge branch 'master' into stock_article_quantity_history

This commit is contained in:
Julius 2013-07-11 19:23:52 +02:00
commit 620686fa46
4 changed files with 12 additions and 2 deletions

View file

@ -4,7 +4,7 @@ module Finance::OrderArticlesHelper
if @order.stockit?
StockArticle.order('articles.name')
else
@order.supplier.articles.order('articles.name')
@order.supplier.articles.undeleted.order('articles.name')
end
end
end