mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
18 lines
587 B
Plaintext
18 lines
587 B
Plaintext
|
# 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|
|
||
|
json.extract! order, :id, :statistic_profile_id, :reference, :state, :created_at
|
||
|
json.total order.total / 100.0 if order.total.present?
|
||
|
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
|