e7657b987f
This change introduces two new data types to group the financial transactions. Now every transaction has a "type", which itself belongs to a "class". Types should be used add structured information to an transaction, instead of writing it into the notice textfield. E.g. this could be used to have different types depending on the source of money (cash vs. bank transfer). Classes are shown as different columns in the tables and will be uses to group transactions of specific types. They should be used if not the whole amount of ordergroup should be used to order food. E.g. if there is a deposit or membership fee, which is independent of the normal credit. This will allow us to implement additional features based on classes in the future. E.g. the sum of transactions in the "membership fee" class must be positive to allow food orders or show a big warning if it is bellow a certain value.
14 lines
708 B
Text
14 lines
708 B
Text
= form_tag close_finance_order_path(@order) do
|
|
%p!= t('.first_paragraph')
|
|
- if FinancialTransactionType.has_multiple_types
|
|
%p
|
|
%b= heading_helper FinancialTransaction, :financial_transaction_type
|
|
= select_tag :type, options_for_select(FinancialTransactionType.order(:name).map { |t| [ t.name, t.id ] })
|
|
%table.table.table-striped{:style => "width:35em"}
|
|
- for group_order in @order.group_orders
|
|
%tr{:class => cycle('even', 'odd')}
|
|
%td= group_order.ordergroup_name
|
|
%td.numeric= number_to_currency(group_order.price)
|
|
.form-actions
|
|
= submit_tag t('.clear'), class: 'btn btn-primary'
|
|
= link_to t('.or_cancel'), new_finance_order_path(order_id: @order.id)
|