mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-18 12:54:27 +01:00
8 lines
254 B
Plaintext
8 lines
254 B
Plaintext
|
# frozen_string_literal: true
|
||
|
|
||
|
json.amount do
|
||
|
json.without_tax number_to_currency((price - (price * vat_rate)) / 100.0)
|
||
|
json.all_taxes_included number_to_currency(price / 100.0)
|
||
|
json.vat_rate vat_rate.positive? ? "#{vat_rate * 100} %" : 'none'
|
||
|
end
|