Fix rendering of financial transaction types sums

This commit is contained in:
Patrick Gansterer 2019-11-11 13:57:06 +01:00
parent 54503f2dc4
commit 9babb6cfe9

View file

@ -95,7 +95,7 @@ class Finance::FinancialTransactionsController < ApplicationController
protected protected
def find_ordergroup def find_ordergroup
@ordergroup = Ordergroup.find(params[:ordergroup_id]) @ordergroup = Ordergroup.include_transaction_class_sum.find(params[:ordergroup_id])
end end
end end