{{ rentalLabel|trans({}, 'RentalTrans') }}
|
{% if hasVehicles == true %}
|
{% endif %}
|
|
|
|
|
|
{% if rentalZone is not empty %}
{{ rentalZone|trans({}, 'CommonTrans') }}
{% endif %}
|
{% include 'AppBundle:Utility:localized_currency.html.twig' with {
'value': rentalPriceWithoutTax
} %}
|
{% if rentalTax is not empty %}
{{ rentalTax|trans({}, 'CommonTrans') }}
{% endif %}
|
{% if rentalCollectedTax is not empty %}
{% include 'AppBundle:Utility:localized_currency.html.twig' with {
'value': rentalCollectedTax
} %}
{% endif %}
|
{% if rentalPriceWithTax is not empty %}
{% include 'AppBundle:Utility:localized_currency.html.twig' with {
'value': rentalPriceWithTax
} %}
{% endif %}
|
{% if rentalGrossMargin is not empty %}
{% include 'AppBundle:Utility:localized_currency.html.twig' with {
'value': rentalGrossMargin
} %}
{% endif %}
|
{% if rentalNetMargin is not empty %}
{% include 'AppBundle:Utility:localized_currency.html.twig' with {
'value': rentalNetMargin
} %}
{% endif %}
|