foodsoft/app/views/finance/financial_transactions/index.html.haml

28 lines
1.1 KiB
Plaintext

- title @ordergroup ? t('.title', name: @ordergroup.name) : t('.title_foodcoop')
- content_for :actionbar do
- url = @ordergroup ? new_finance_ordergroup_transaction_path(@ordergroup) : new_finance_foodcoop_financial_transaction_path
= link_to t('.new_transaction'), url, class: 'btn btn-primary'
- if @ordergroup
- content_for :sidebar do
.well.well-small
%strong= t('.balance', balance: number_to_currency(@ordergroup.account_balance))
%br/
%small= t('.last_updated_at', when: distance_of_time_in_words(Time.now, @ordergroup.account_updated))
%p
- unless FoodsoftConfig[:charge_members_manually]
%p
%b= heading_helper(Ordergroup, :available_funds) + ':'
= number_to_currency(@ordergroup.get_available_funds)
- if FinancialTransactionClass.has_multiple_classes
- FinancialTransactionClass.sorted.each do |c|
%p
%b= c.display + ':'
= number_to_currency(@ordergroup["sum_of_class_#{c.id}"])
= render 'transactions_search', url: finance_group_transactions_path(@ordergroup)
#transactions= render 'transactions', with_csv: true, with_hidden: true