{% if vehicleSelling.priceDiscount is null or vehicleSelling.priceDiscount == "0.00" %}
{% if notShowColumnTaxAndTotalWithTax == false %}
{{ 'administrative.price_with_tax'|trans({}, 'DocumentTrans' ) }}
{% else %}
{{ 'administrative.price_without_tax'|trans({}, 'DocumentTrans' ) }}
{% endif %}
{% else %}
{% if notShowColumnTaxAndTotalWithTax == false %}
{{ 'administrative.price_with_discount_with_tax'|trans({}, 'DocumentTrans' ) }}
{% else %}
{{ 'administrative.price_with_discount_without_tax'|trans({}, 'DocumentTrans' ) }}
{% endif %}
{% endif %}
{% block vehicle_sell_price_with_tax %}
{{ vehicleSelling.sellPriceWithTax|number_format(2, ',', ' ') }}{{ currencySymbol }}
{% endblock %}
|
|
{% block side_vehicle_price %}
{% if hasExchange == true %}
|
{{ 'vehicle.part_exchange.today_value'|trans({}, 'DocumentTrans' ) }}
{{ vehiclePartExchange.priceWithTax|number_format(2, ',', ' ') }}{{ currencySymbol }}
|
|
{% endif %}
{% endblock side_vehicle_price %}