mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01:00
20 lines
767 B
Plaintext
20 lines
767 B
Plaintext
|
# frozen_string_literal: true
|
||
|
|
||
|
json.extract! payment_schedule, :id, :reference, :created_at, :payment_method
|
||
|
json.total payment_schedule.total / 100.00
|
||
|
json.chained_footprint payment_schedule.check_footprint
|
||
|
json.user do
|
||
|
json.name payment_schedule.invoicing_profile.full_name
|
||
|
end
|
||
|
if payment_schedule.operator_profile
|
||
|
json.operator do
|
||
|
json.id payment_schedule.operator_profile.user_id
|
||
|
json.extract! payment_schedule.operator_profile, :first_name, :last_name
|
||
|
end
|
||
|
end
|
||
|
json.items payment_schedule.payment_schedule_items do |item|
|
||
|
json.extract! item, :id, :due_date, :state, :invoice_id, :payment_method
|
||
|
json.amount item.amount / 100.00
|
||
|
json.client_secret item.payment_intent.client_secret if item.stp_invoice_id && item.state == 'requires_action'
|
||
|
end
|