fournisseur :
{% if supplier is not empty %}
{% if supplier|instanceof('AppBundle\\Entity\\Contact\\ContactIndividual') %}
{{ supplier.lastname }}
{% else %}
{{ supplier.corporateNameContact }}
{% endif %}
{% endif %}
|
date reception : ......../......../........ |
n° vo : {% if vehicle.vo is not empty %}{{ vehicle.vo }}{% endif %} |
immatriculation : {% if vehicle.licenseNumber is not empty %}{{ vehicle.licenseNumber }}{% endif %} |
{% if vehicle.brand is not empty %}
{{ vehicle.brand }}
{% endif %}
{% if vehicle.model is not empty %}
{{ vehicle.model }}
{% endif %}
{% if vehicle.version is not empty %}
{{ vehicle.version }}
{% endif %}
|
N° de Série |
Carrosserie |
Energie |
Puiss. |
Kilométrage |
Boîte de vitesses |
Couleur |
{% if vehicle.vin is not empty %}{{ vehicle.vin }}{% endif %} |
{% if vehicle.bodywork is not empty and vehicle.bodywork.name is not empty %}{{ vehicle.bodywork.name }}{% endif %} |
{% if vehicle.energy is not empty and vehicle.energy.name is not empty %}{{ vehicle.energy.name }}{% endif %} |
{% if vehicle.horsepower is not empty %}{{ vehicle.horsepower }}{% endif %} |
{% if vehicle.distanceTraveled is not empty %}{{ vehicle.distanceTraveled }} Km{% endif %} |
{% if vehicle.gearbox is not empty and vehicle.gearbox.name is not empty %}{{ vehicle.gearbox.name }}{% endif %} |
{% if vehicle.color is not empty and vehicle.color.name is not empty %}
{{ vehicle.color.name }}
{% endif %}
|
{% if expertise is not empty and expertise.stateElements is not empty %}
{% for stateElement in expertise.stateElements %}
{{ stateElement.element.name }} |
Oui
{% if stateElement.isProvided == 1 %}
{% endif %}
|
Non
{% if stateElement.isProvided == 0 %}
{% endif %}
|
{% endfor %}
{% else %}
{% for stateElement in stateElements %}
{{ stateElement.name }} |
Oui |
Non |
{% endfor %}
{% endif %}
|
état des frais |
|
R=rayure I=impact T=tôlerie C=Cassure |
R |
I |
T |
C |
MONTANT HT |
{% set nbEmptyState = 10 %}
{% set totalStateCosting = 0 %}
{% if expertise is defined and expertise is not empty and expertise.externalStateList is not empty %}
{% for externalState in expertise.externalStateList %}
{% set nbEmptyState = nbEmptyState - 1 %}
{{ externalState.zone.name }} |
|
|
|
|
{{ externalState.costing|number_format(2, ',', ' ') }} {{ currencySymbol }} |
{% set totalStateCosting = totalStateCosting + externalState.costing %}
{% endfor %}
{% endif %}
{% if expertise is defined and expertise is not empty and expertise.internalStateList is not empty %}
{% for internalState in expertise.internalStateList %}
{% set nbEmptyState = nbEmptyState - 1 %}
{{ internalState.zone.name }} |
|
|
|
|
{{ internalState.costing|number_format(2, ',', ' ') }} {{ currencySymbol }} |
{% set totalStateCosting = totalStateCosting + internalState.costing %}
{% endfor %}
{% endif %}
{% if nbEmptyState > 0 %}
{% for i in 1..nbEmptyState %}
|
|
|
|
|
|
{% endfor %}
{% endif %}
frais estimés à la commande : {% if totalStateCosting != 0 %}{{ totalStateCosting|number_format(2, ',', ' ') }} {{ currencySymbol }}{% endif %} |
frais constatés : {% if vehicle.estimateCost is not empty %}{{ vehicle.estimateCost|number_format(2, ',', ' ') }} {{ currencySymbol }}{% endif %} |