2022-09-12 19:44:13 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
json.page @result[:page]
|
|
|
|
json.total_pages @result[:total_pages]
|
|
|
|
json.page_size @result[:page_size]
|
|
|
|
json.total_count @result[:total_count]
|
|
|
|
json.data @result[:data] do |order|
|
2022-09-13 18:43:37 +02:00
|
|
|
json.extract! order, :id, :statistic_profile_id, :reference, :state, :created_at, :payment_state, :updated_at
|
2022-09-12 19:44:13 +02:00
|
|
|
json.total order.total / 100.0 if order.total.present?
|
2022-09-13 13:03:56 +02:00
|
|
|
json.paid_total order.paid_total / 100.0 if order.paid_total.present?
|
2022-09-12 19:44:13 +02:00
|
|
|
if order&.statistic_profile&.user
|
|
|
|
json.user do
|
|
|
|
json.id order.statistic_profile.user.id
|
|
|
|
json.role order.statistic_profile.user.roles.first.name
|
|
|
|
json.name order.statistic_profile.user.profile.full_name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|