Skip to content

Commit

Permalink
Added some eager loading for balancing new.
Browse files Browse the repository at this point in the history
  • Loading branch information
bennibu committed Mar 12, 2013
1 parent 40d9195 commit 6196bda
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions app/controllers/finance/balancing_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ def new
sort = "id"
end

@articles = @order.order_articles.ordered.includes(:article).order(sort)

@articles = @order.order_articles.ordered.includes(:order, :article, :article_price,
group_order_articles: {group_order: :ordergroup}).order(sort)


if params[:sort] == "order_number"
@articles = @articles.to_a.sort { |a,b| a.article.order_number.gsub(/[^[:digit:]]/, "").to_i <=> b.article.order_number.gsub(/[^[:digit:]]/, "").to_i }
elsif params[:sort] == "order_number_reverse"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
= link_to 'Gruppe hinzufügen', new_finance_group_order_article_path(order_article_id: order_article.id),
remote: true, class: 'btn btn-mini'
%tbody
- for group_order_article in order_article.group_order_articles.ordered.all(:include => [:group_order])
- for group_order_article in order_article.group_order_articles.select { |goa| goa.result > 0 }
%tr[group_order_article]
%td
%td{:style=>"width:50%"}
Expand Down
2 changes: 1 addition & 1 deletion app/views/finance/balancing/new.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

.well.well-small
%h3 Kommentare
#comments= render :partial => 'shared/comments', locals: {comments: @order.comments}
#comments= render :partial => 'shared/comments', locals: {comments: @order.comments.includes(:user)}

- content_for :actionbar do
.btn-group
Expand Down

0 comments on commit 6196bda

Please sign in to comment.