1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-04 15:24:23 +01:00
fab-manager/app/views/api/orders/_order.json.jbuilder

22 lines
720 B
Plaintext
Raw Normal View History

2022-08-19 19:59:13 +02:00
# frozen_string_literal: true
json.extract! order, :id, :token, :statistic_profile_id, :operator_profile_id, :reference, :state, :created_at
2022-08-26 10:46:30 +02:00
json.total order.total / 100.0 if order.total.present?
2022-08-25 16:23:00 +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
2022-08-25 08:52:17 +02:00
end
2022-08-19 19:59:13 +02:00
json.order_items_attributes order.order_items do |item|
json.id item.id
json.orderable_type item.orderable_type
json.orderable_id item.orderable_id
json.orderable_name item.orderable.name
json.quantity item.quantity
json.amount item.amount / 100.0
json.is_offered item.is_offered
end