2022-10-28 17:13:41 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-12-16 18:43:38 +01:00
|
|
|
json.extract! machine, :id, :name, :slug, :disabled, :machine_category_id
|
2022-10-28 17:13:41 +02:00
|
|
|
|
|
|
|
if machine.machine_image
|
|
|
|
json.machine_image_attributes do
|
|
|
|
json.id machine.machine_image.id
|
|
|
|
json.attachment_name machine.machine_image.attachment_identifier
|
|
|
|
json.attachment_url machine.machine_image.attachment.url
|
|
|
|
end
|
|
|
|
end
|
2022-11-10 16:14:49 +01:00
|
|
|
|
|
|
|
if machine.advanced_accounting
|
|
|
|
json.advanced_accounting_attributes do
|
|
|
|
json.partial! 'api/advanced_accounting/advanced_accounting', advanced_accounting: machine.advanced_accounting
|
|
|
|
end
|
|
|
|
end
|