diff --git a/app/helpers/finance/order_articles_helper.rb b/app/helpers/finance/order_articles_helper.rb index 548dfc4f..0ebbc835 100644 --- a/app/helpers/finance/order_articles_helper.rb +++ b/app/helpers/finance/order_articles_helper.rb @@ -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