Merge branch 'master' into improve-delivery-workflow-further

This commit is contained in:
Julius 2013-07-11 19:24:37 +02:00
commit 469abb753d
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