{% include INIT_VARIABLES %}
{% import 'AppBundle:Documents:v2\\Import\\vehicle.html.twig' as vehicleF %}
{% import 'AppBundle:Admin:Common\\Macro\\macro_image.html.twig' as macro_image %}
{% include FOOTER f 30 50 %}
Marque / Modèle |
{{ vehicle.brand }}
{{ vehicle.model }}
|
Version |
{{ vehicle.version }} |
Energie |
Puiss. Admin. |
{{ vehicle.energy }} |
{% if vehicle.taxHorsepower is not empty %}{{ vehicle.taxHorsepower }} CV{% endif %} |
|
Mise en Circulation |
Kilométrage
{% if vehicle.distanceTraveledWarranty is not empty and vehicle.distanceTraveledWarranty == true %}
Garanti
{% else %}
Non garanti
{% endif %}
|
{% if vehicle.dateOfDistribution is not empty %}{{ vehicle.dateOfDistribution|date('d/m/y') }}{% endif %} |
{% if vehicle.distanceTraveled is not empty %}{{ vehicle.distanceTraveled }} kms{% endif %} |
|
|
Principaux équipements de série |
Principaux équipements en options |
{% set cptStandard = 0 %}
{% for opt in vehicle.equipmentStandard if cptStandard < 36 %}
{% set cptStandard = cptStandard + 1 %}
{{ opt.option|truncate(55, true, '...') }}
{% else %}
...
{% endfor %}
|
{% set cptOptional = 0 %}
{% for opt in vehicle.equipmentOptional if cptOptional < 36 %}
{% set cptOptional = cptOptional + 1 %}
- {{ opt.option|truncate(55, true, '...') }}
{% else %}
...
{% endfor %}
|
|
Prix TTC {% if isVU is defined and isVU == true %}{% if vehicle.pricePublic is not empty %}{{ vehicle.pricePublic|number_format(0, '', ' ') }} {{ currencySymbol }}{% endif %}{% endif %} |
{% if isVU is defined and isVU == true %}
{% if vehicle.pricePublicWithoutTax is not empty %}
{{ vehicle.pricePublicWithoutTax|number_format(0, '', ' ') }} {{ currencySymbol }} HT
{% endif %}
{% else %}
{% if vehicle.pricePublic is not empty %}
{{ vehicle.pricePublic|number_format(0, '', ' ') }} {{ currencySymbol }}
{% endif %}
{% endif %}
Hors frais d'immatriculation
{% if vehicle.isRecoverableVat == 1 %}
- TVA récupérable
{% endif %}
|
Garantie |
Durée |
{% if vehicle.warrantyType is not empty and vehicle.warrantyType == 'vehicle.warranty.type.with' %}
{{ vehicle.warrantyLabel }}
{% elseif vehicle.warrantyType is not empty and vehicle.warrantyType == 'vehicle.warranty.type.manufacturer' %}
Garantie constructeur
{% elseif vehicle.warrantyType is not empty and vehicle.warrantyType == 'vehicle.warranty.type.without' %}
Sans garantie
{% endif %}
|
{% if vehicle.warrantyDuration is not empty and (vehicle.warrantyType == 'vehicle.warranty.type.with' or vehicle.warrantyType == 'vehicle.warranty.type.manufacturer') %}
{{ vehicle.warrantyDuration }} mois
{% endif %}
|
Km Compris |
|
{% if vehicle.warrantyKilometric is not empty and (vehicle.warrantyType == 'vehicle.warranty.type.with' or vehicle.warrantyType == 'vehicle.warranty.type.manufacturer') %}
{{ vehicle.warrantyKilometric }} Km
{% endif %}
|
|
N° de Police |
Immatriculation |
{{ vehicle.vo }} |
{{ vehicle.licenseNumber }} |
Provenance |
Origine |
{{ vehicle.follow.origin }} |
{% if vehicle.country is not empty %}
{{ countries[vehicle.country] }}
{% endif %}
|
{{ macro_image.resize_image(vehicleF.getAirQualityCertificationUrl(vehicle, {})|trim, 150, 150, 150, 150) }}
|
|
|