{# params include #}
{% set vehicle = object.vehicle %}
{% set displaySellPrice = true %}
{% set sellPrice = object.vehicleSellingList[0].sellPriceWithTax %}
{% set sellPriceWithoutTax = object.vehicleSellingList[0].sellPriceWithoutTax %}
{% set totalPrice = sellPrice %}
{% set withoutCO2 = true %}
{% set vehicleDiscount = object.vehicleSellingList[0].priceDiscount %}
{% set sellPriceWithTax = object.sellPriceWithTax %}
{% include TEMPLATE_VEHICLE_TABLE_NEGOCE %}
{% if object.partExchangePurchase is not empty and object.partExchangePurchase.vehicle is not empty %}
{% include TEMPLATE_PART_EXCHANGE_SELLING %}
{% endif %}
{% include TEMPLATE_SELLING_TABLE %}
{% set remarksBloc = "" %}
{% for notes in object.noteList %}
{% set remarks = notes.title ~ ' ' ~ notes.content %}
{% set remarks = remarks | truncate(500, true, '...') %}
{% set remarks = remarks ~ '\n' %}
{% set remarksBloc = remarksBloc ~ remarks %}
{% endfor %}
{{ remarksBloc | truncate(1500, true, '') | nl2br }}
{# params include #}
{% set nbVehicleStandardEquipment = 70 %}
{% set isCotation = true %}
{% include TEMPLATE_VEHICLE_STANDARD_EQUIPMENT %}
{# params include #}
{% set nbVehicleOptionalEquipment = 70 %}
{% set priceOptionsOptional = true %}
{% include TEMPLATE_VEHICLE_OPTIONAL_EQUIPMENT %}
{% if vehicleMediaList is defined and vehicleMediaList is not empty %}
{% for image in vehicleMediaList %}
{% if loop.index0%2 == 0 %}
{% if loop.index0 > 1 %}
{% endif %}
{% endif %}
{% set containerImgWidth = 500 %}
{% set containerImgHeight = 300 %}
{% include TEMPLATE_IMAGE %}