Sha256: 65f685d62a30ab54b5e4fe913e40d2c7d40bfc092f53713b8aaae3b8ca94d4da

Contents?: true

Size: 1.02 KB

Versions: 5

Compression:

Stored size: 1.02 KB

Contents

class Kaui::ChargesController < Kaui::EngineController

  def new
    invoice_id = params[:invoice_id]
    amount = params[:amount]

    if invoice_id.present?
      @invoice = Kaui::Invoice.find_by_id(invoice_id, true, 'NONE', options_for_klient)
      amount ||= @invoice.balance
      currency = @invoice.currency
    else
      @invoice = nil
      currency = params[:currency] || 'USD'
    end

    @charge = Kaui::InvoiceItem.new(:account_id => params.require(:account_id), :invoice_id => invoice_id, :amount => amount, :currency => currency)
  end

  def create
    charge = Kaui::InvoiceItem.new(params.require(:invoice_item).delete_if { |key, value| value.blank? })
    charge.account_id ||= params.require(:account_id)

    auto_commit = params[:auto_commit] == '1'

    charge = charge.create(auto_commit, current_user.kb_username, params[:reason], params[:comment], options_for_klient)
    redirect_to kaui_engine.account_invoice_path(charge.account_id, charge.invoice_id), :notice => 'Charge was successfully created'
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
kaui-1.4.1 app/controllers/kaui/charges_controller.rb
kaui-1.4.0 app/controllers/kaui/charges_controller.rb
kaui-1.3.0 app/controllers/kaui/charges_controller.rb
kaui-1.2.0 app/controllers/kaui/charges_controller.rb
kaui-1.1.0 app/controllers/kaui/charges_controller.rb