Class: Kaui::PaymentsController
Constant Summary
EngineControllerUtil::MAXIMUM_NUMBER_OF_RECORDS_DOWNLOAD, EngineControllerUtil::SIMPLE_PAGINATION_THRESHOLD
Instance Method Summary
collapse
#check_for_redirect_to_tenant_screen, #current_ability, #current_user, #options_for_klient, #populate_account_details, #retrieve_allowed_users_for_current_user, #retrieve_tenants_for_current_user
#perform_redirect_after_error
Instance Method Details
#cancel_scheduled_payment ⇒ Object
187
188
189
190
191
192
193
194
195
196
197
|
# File 'app/controllers/kaui/payments_controller.rb', line 187
def cancel_scheduled_payment
payment_transaction = Kaui::Transaction.new
payment_transaction.transaction_external_key = params.require(:transaction_external_key)
payment_transaction.cancel_scheduled_payment(current_user.kb_username, params[:reason], params[:comment], options_for_klient)
redirect_to kaui_engine.account_payment_path(params.require(:account_id), params.require(:id)), notice: 'Payment attempt retry successfully deleted'
rescue StandardError => e
flash[:error] = "Error deleting payment attempt retry: #{as_string(e)}"
redirect_to kaui_engine.account_path(params.require(:account_id))
end
|
#create ⇒ Object
153
154
155
156
157
158
159
|
# File 'app/controllers/kaui/payments_controller.rb', line 153
def create
payment = Kaui::InvoicePayment.new(invoice_payment_params)
external_payment = params[:external] == '1'
payment.payment_method_id = nil if external_payment || payment.payment_method_id.blank?
payment.create(external_payment, current_user.kb_username, params[:reason], params[:comment], options_for_klient)
redirect_to kaui_engine.account_invoice_path(payment.account_id, payment.target_invoice_id), notice: 'Payment triggered'
end
|
#download ⇒ Object
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# File 'app/controllers/kaui/payments_controller.rb', line 18
def download
account_id = params[:account_id]
start_date = params[:startDate]
end_date = params[:endDate]
all_fields_checked = params[:allFieldsChecked] == 'true'
query_string = params[:search]
if all_fields_checked
columns = KillBillClient::Model::PaymentAttributes.instance_variable_get('@json_attributes') - %w[transactions audit_logs]
= columns.dup
Kaui::Payment::REMAPPING_FIELDS.each do |k, v|
index = .index(k)
[index] = v if index
end
else
columns = params.require(:columnsString).split(',').map { |attr| attr.split.join('_').downcase }
= columns.dup
Kaui::Payment::REMAPPING_FIELDS.each do |k, v|
index = columns.index(v)
columns[index] = k if index
end
end
query_string = remapping_addvanced_search_fields(query_string, Kaui::Payment::ADVANCED_SEARCH_NAME_CHANGES)
kb_params = {}
kb_params[:startDate] = Date.parse(start_date).strftime('%Y-%m-%d') if start_date
kb_params[:endDate] = Date.parse(end_date).strftime('%Y-%m-%d') if end_date
account = account_id.present? ? Kaui::Account.find_by_id_or_key(account_id, false, false, options_for_klient) : nil
payments = if account_id.present? && query_string.blank?
Kaui::Account.paginated_payments(account_id, nil, nil, 'NONE', options_for_klient).map! { |payment| Kaui::Payment.build_from_raw_invoice(payment) }
else
Kaui::Payment.list_or_search(query_string, 0, MAXIMUM_NUMBER_OF_RECORDS_DOWNLOAD, options_for_klient.merge(params: kb_params))
end
payments.each do |payment|
created_date = nil
payment.transactions.each do |transaction|
transaction_date = Date.parse(transaction.effective_date)
created_date = transaction_date if created_date.nil? || (transaction_date < created_date)
end
payment.payment_date = created_date
end
csv_string = CSV.generate(headers: true) do |csv|
csv << columns
payments.each do |payment|
next if start_date && end_date && (payment.payment_date < Date.parse(start_date) || payment.payment_date > Date.parse(end_date))
data = columns.map do |attr|
case attr
when 'payment_number'
payment.payment_number
when 'payment_date'
view_context.format_date(payment.payment_date, account&.time_zone)
when 'total_authed_amount_to_money'
view_context.humanized_money_with_symbol(payment.total_authed_amount_to_money)
when 'paid_amount_to_money'
view_context.humanized_money_with_symbol(payment.paid_amount_to_money)
when 'returned_amount_to_money'
view_context.humanized_money_with_symbol(payment.returned_amount_to_money)
when 'status'
payment.transactions.empty? ? nil : payment.transactions[-1].status
else
payment&.send(attr.downcase)
end
end
csv << data
end
end
send_data csv_string, filename: "payments-#{Date.today}.csv", type: 'text/csv'
end
|
#index ⇒ Object
7
8
9
10
11
12
13
14
15
16
|
# File 'app/controllers/kaui/payments_controller.rb', line 7
def index
@search_query = params[:q] || params[:account_id]
@advance_search_query = request.query_string
@ordering = params[:ordering] || (@search_query.blank? ? 'desc' : 'asc')
@offset = params[:offset] || 0
@limit = params[:limit] || 50
@search_fields = Kaui::Payment::ADVANCED_SEARCH_COLUMNS.map { |attr| [attr, attr.split('_').join(' ').capitalize] }
@max_nb_records = @search_query.blank? ? Kaui::Payment.list_or_search(nil, 0, 0, options_for_klient). : 0
end
|
#new ⇒ Object
142
143
144
145
146
147
148
149
150
151
|
# File 'app/controllers/kaui/payments_controller.rb', line 142
def new
cached_options_for_klient = options_for_klient
fetch_invoice = promise { Kaui::Invoice.find_by_id(params.require(:invoice_id), false, 'NONE', cached_options_for_klient) }
fetch_payment_methods = promise { Kaui::PaymentMethod.find_all_by_account_id(params.require(:account_id), false, cached_options_for_klient) }
@invoice = wait(fetch_invoice)
@payment_methods = wait(fetch_payment_methods)
@payment = Kaui::InvoicePayment.new('accountId' => @account.account_id, 'targetInvoiceId' => @invoice.invoice_id, 'purchasedAmount' => @invoice.balance)
end
|
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
# File 'app/controllers/kaui/payments_controller.rb', line 91
def
account = nil
searcher = lambda do |search_key, offset, limit|
if Kaui::Payment::TRANSACTION_STATUSES.include?(search_key)
payment_state = if %w[PLUGIN_FAILURE UNKNOWN].include?(search_key)
'_ERRORED'
elsif search_key == 'PAYMENT_FAILURE'
'_FAILED'
else
"_#{search_key}"
end
payments = Kaui::Payment.list_or_search(payment_state, offset, limit, options_for_klient)
else
account = begin
Kaui::Account.find_by_id_or_key(search_key, false, false, options_for_klient)
rescue StandardError
nil
end
payments = if account.nil?
search_key = remapping_addvanced_search_fields(search_key, Kaui::Payment::ADVANCED_SEARCH_NAME_CHANGES)
Kaui::Payment.list_or_search(search_key, offset, limit, options_for_klient)
else
account.payments(options_for_klient).map! { |payment| Kaui::Payment.build_from_raw_payment(payment) }
end
end
payments.each do |payment|
created_date = nil
payment.transactions.each do |transaction|
transaction_date = Date.parse(transaction.effective_date)
created_date = transaction_date if created_date.nil? || (transaction_date < created_date)
end
payment.payment_date = created_date
end
payments
end
= lambda do |payment, column|
Kaui.account_payments_columns.call(account, payment, view_context)[2][column]
end
formatter = lambda do |payment|
Kaui.account_payments_columns.call(account, payment, view_context)[1]
end
paginate searcher, , formatter
end
|
#restful_show ⇒ Object
178
179
180
181
182
183
184
185
|
# File 'app/controllers/kaui/payments_controller.rb', line 178
def restful_show
begin
payment = Kaui::InvoicePayment.find_by_id(params.require(:id), false, true, options_for_klient)
rescue KillBillClient::API::NotFound
payment = Kaui::Payment.find_by_external_key(params.require(:id), false, true, options_for_klient)
end
redirect_to account_payment_path(payment.account_id, payment.payment_id)
end
|
#show ⇒ Object
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
# File 'app/controllers/kaui/payments_controller.rb', line 161
def show
cached_options_for_klient = options_for_klient
invoice_payment = Kaui::InvoicePayment.find_safely_by_id(params.require(:id), cached_options_for_klient)
@payment = Kaui::InvoicePayment.build_from_raw_payment(invoice_payment)
fetch_payment_fields = promise do
direct_payment = Kaui::Payment.new(payment_id: @payment.payment_id)
direct_payment.custom_fields('NONE', cached_options_for_klient).sort { |cf_a, cf_b| cf_a.name.downcase <=> cf_b.name.downcase }
end
fetch_payment_method = promise { Kaui::PaymentMethod.find_safely_by_id(@payment.payment_method_id, cached_options_for_klient) }
@custom_fields = wait(fetch_payment_fields)
@payment_method = wait(fetch_payment_method)
end
|