mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
8 lines
319 B
Ruby
8 lines
319 B
Ruby
# frozen_string_literal: true
|
|
|
|
json.amount do
|
|
json.without_tax number_to_currency((price - (price * vat_rate)) / 100.0, locale: CURRENCY_LOCALE)
|
|
json.all_taxes_included number_to_currency(price / 100.0, locale: CURRENCY_LOCALE)
|
|
json.vat_rate vat_rate.positive? ? number_to_percentage(vat_rate * 100) : 'none'
|
|
end
|