{{ 'vehicle.part_exchange.title'|trans({}, 'DocumentTrans' )}}
|
{{ 'vehicle.brand'|trans({}, 'DocumentTrans' )}}
|
{{ 'vehicle.model_version'|trans({}, 'DocumentTrans' )}}
|
{{ 'vehicle.date_of_distribution'|trans({}, 'DocumentTrans' )}}
|
{{ 'vehicle.serial_number'|trans({}, 'DocumentTrans' )}}
|
{{ 'vehicle.mileage'|trans({}, 'DocumentTrans' )}}
|
{{ 'vehicle.license_number'|trans({}, 'DocumentTrans' )}}
|
{{ partExchangeVehicle.brand }}
|
{% if partExchangeVehicle.model is not empty %}
{{ partExchangeVehicle.model }}
{% endif %}
{% if partExchangeVehicle.version is not empty %}
/ {{ partExchangeVehicle.version }}
{% endif %}
|
{{ partExchangeVehicle.dateOfDistribution|date("d/m/Y") }}
|
{{ partExchangeVehicle.vin }}
|
{{ partExchangeVehicle.distanceTraveled }}
|
{{ partExchangeVehicle.licenseNumber }}
|
|
|
{% if notShowColumnTaxAndTotalWithTax == true %}
{{ 'vehicle.part_exchange.total.price_without_tax'|trans({}, 'DocumentTrans' )}}
{% else %}
{{ 'vehicle.part_exchange.total.price_with_tax'|trans({}, 'DocumentTrans' )}}
{% endif %}
|
{% if notShowColumnTaxAndTotalWithTax == true %}
{{ object.partExchangePurchase.priceWithoutTax|number_format(2, ',', ' ') }} {{ currencySymbol }}
{% else %}
{{ object.partExchangePurchase.priceWithTax|number_format(2, ',', ' ') }} {{ currencySymbol }}
{% endif %}
|
|
{{ 'vehicle.part_exchange.clause.txt_1'|trans({}, 'DocumentTrans' )}}
{{ 'vehicle.part_exchange.clause.txt_2'|trans({}, 'DocumentTrans' )}}
|