Fixed broken eager loading in orders#edit.
This commit is contained in:
parent
557fa78ebe
commit
65dee49cdb
1 changed files with 7 additions and 7 deletions
|
@ -82,7 +82,7 @@ class OrdersController < ApplicationController
|
|||
# Page to edit an exsiting order.
|
||||
# editing finished orders is done in FinanceController
|
||||
def edit
|
||||
@order = Order.find(params[:id], :include => :articles)
|
||||
@order = Order.includes(:articles).find(params[:id])
|
||||
end
|
||||
|
||||
# Update an existing order.
|
||||
|
|
Loading…
Reference in a new issue