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.
88 lines
2.8 KiB
Ruby
88 lines
2.8 KiB
Ruby
# encoding: utf-8
|
|
class Finance::BalancingController < Finance::BaseController
|
|
|
|
def index
|
|
@orders = Order.finished.page(params[:page]).per(@per_page).order('ends DESC')
|
|
end
|
|
|
|
def new
|
|
@order = Order.find(params[:order_id])
|
|
flash.now.alert = t('finance.balancing.new.alert') if @order.closed?
|
|
@comments = @order.comments
|
|
|
|
@articles = @order.order_articles.ordered_or_member.includes(:article, :article_price,
|
|
group_order_articles: {group_order: :ordergroup})
|
|
|
|
sort_param = params['sort'] || 'name'
|
|
@articles = case sort_param
|
|
when 'name' then
|
|
@articles.order('articles.name ASC')
|
|
when 'name_reverse' then
|
|
@articles.order('articles.name DESC')
|
|
when 'order_number' then
|
|
@articles.order('articles.order_number ASC')
|
|
when 'order_number_reverse' then
|
|
@articles.order('articles.order_number DESC')
|
|
else
|
|
@articles
|
|
end
|
|
|
|
render layout: false if request.xhr?
|
|
end
|
|
|
|
def new_on_order_article_create # See publish/subscribe design pattern in /doc.
|
|
@order_article = OrderArticle.find(params[:order_article_id])
|
|
|
|
render :layout => false
|
|
end
|
|
|
|
def new_on_order_article_update # See publish/subscribe design pattern in /doc.
|
|
@order_article = OrderArticle.find(params[:order_article_id])
|
|
|
|
render :layout => false
|
|
end
|
|
|
|
def update_summary
|
|
@order = Order.find(params[:id])
|
|
end
|
|
|
|
def edit_note
|
|
@order = Order.find(params[:id])
|
|
render :layout => false
|
|
end
|
|
|
|
def update_note
|
|
@order = Order.find(params[:id])
|
|
if @order.update_attributes(params[:order])
|
|
render :layout => false
|
|
else
|
|
render :action => :edit_note, :layout => false
|
|
end
|
|
end
|
|
|
|
# before the order will booked, a view lists all Ordergroups and its order_prices
|
|
def confirm
|
|
@order = Order.find(params[:id])
|
|
end
|
|
|
|
# Balances the Order, Update of the Ordergroup.account_balances
|
|
def close
|
|
@order = Order.find(params[:id])
|
|
@type = FinancialTransactionType.find_by_id(params.permit(:type))
|
|
@order.close!(@current_user, @type)
|
|
redirect_to finance_order_index_url, notice: t('finance.balancing.close.notice')
|
|
|
|
rescue => error
|
|
redirect_to new_finance_order_url(order_id: @order.id), alert: t('finance.balancing.close.alert', message: error.message)
|
|
end
|
|
|
|
# Close the order directly, without automaticly updating ordergroups account balances
|
|
def close_direct
|
|
@order = Order.find(params[:id])
|
|
@order.close_direct!(@current_user)
|
|
redirect_to finance_order_index_url, notice: t('finance.balancing.close_direct.notice')
|
|
rescue => error
|
|
redirect_to finance_order_index_url, alert: t('finance.balancing.close_direct.alert', message: error.message)
|
|
end
|
|
|
|
end
|