Sha256: 250d8300845f912e5fd205e09e55e10472642a65916ef2286a555322ab05598a
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 KB
Contents
# frozen_string_literal: true module Kaui class CreditsController < Kaui::EngineController def new invoice_id = params[:invoice_id] amount = params[:amount] if invoice_id.present? @invoice = Kaui::Invoice.find_by_id(invoice_id, 'NONE', options_for_klient) amount ||= @invoice.balance currency = @invoice.currency else @invoice = nil currency = params[:currency] || 'USD' end @credit = Kaui::Credit.new(account_id: params.require(:account_id), invoice_id:, amount:, currency:) end def create credit = Kaui::Credit.new(params[:credit].delete_if { |_key, value| value.blank? }) credit.account_id ||= params.require(:account_id) # No need to show the newly created invoice for account level credits should_redirect_to_invoice = credit.invoice_id.present? credits = credit.create(true, current_user.kb_username, params[:reason], params[:comment], options_for_klient) flash[:notice] = 'Credit was successfully created' if should_redirect_to_invoice redirect_to kaui_engine.account_invoice_path(credits[0].account_id, credits[0].invoice_id) else redirect_to kaui_engine.account_path(credits[0].account_id) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
kaui-3.0.2 | app/controllers/kaui/credits_controller.rb |
kaui-3.0.1 | app/controllers/kaui/credits_controller.rb |