{% include INIT_VARIABLES %}
{% include FOOTER f 30 50 %}
{% include TEMPLATE_CSS_PORTRAIT %}
{# params include #}
{% set displaySeller = false %}
{% include TEMPLATE_HEADER_PORTRAIT %}
Contrat de location n° {% if rental.number is not empty %}{{ rental.number }}{% endif %}
Type du contrat :
{% if rental.type == 'rental.type.short_term_rental' %}
LCD
{% else %}
LLD
{% endif %}
- Daté du : {% if rental.rentalDate is not empty %} {{ rental.rentalDate|date('d/m/Y') }} {% endif %}
{% set firstDriver = rental.newFirstDriver.contact %}
{% set secondDriver = rental.newSecondDriver.contact %}
Permis de conduire n°
: {% if firstDriver.driver.driverLicenseNumber is not empty %} {{ firstDriver.driver.driverLicenseNumber }} {% endif %}
Délivré le :
{% if firstDriver.driver.driverLicenseDeliveryDate is not empty %}
{{ firstDriver.driver.driverLicenseDeliveryDate|date('d/m/Y') }}
{% endif %}
par
{% if firstDriver.driver.driverLicenseDeliveredBy is not empty %}
{{ firstDriver.driver.driverLicenseDeliveredBy }}
{% endif %}
Permis de conduire n° :
{% if secondDriver.driver.driverLicenseNumber is not empty %}
{{ secondDriver.driver.driverLicenseNumber }}
{% endif %}
Délivré le :
{% if secondDriver.driver.driverLicenseDeliveryDate is not empty %}
{{ secondDriver.driver.driverLicenseDeliveryDate|date('d/m/Y') }}
{% endif %}
par
{% if secondDriver.driver.driverLicenseDeliveredBy is not empty %}
{{ secondDriver.driver.driverLicenseDeliveredBy }}
{% endif %}
Date de naissance :
{% if secondDriver.driver.birthDate is not empty %}
{{ secondDriver.driver.birthDate|date('d/m/Y') }}
{% endif %}
{% endif %}
Véhicule mis à disposition
{% include TEMPLATE_VEHICLE_RENTAL %}
Départ
Retour prévu
Date et heure :
{% if rental.startDate is not empty %}
{{ rental.startDate|date('d/m/Y H:i') }}
{% endif %}
Km compteur :
{% if rental.startKm is not empty %}
{{ rental.startKm }} km
{% endif %}
Niveau de carburant :
{% if rental.startLevelFuel is not empty %}
{{ rental.startLevelFuel }}
{% endif %}
Lieu :
{% if rental.departure is not empty %}
{{ rental.departure }}
{% endif %}
Durée du contrat :
{% set difference = date(rental.startDate).diff(date(rental.returnDate)) %}
{% set leftYears = difference.y %}
{% set leftMonths = difference.m %}
{% set leftDays = difference.days %}
{% set leftHours = difference.h %}
{% if leftYears is not empty and leftYears != 0 %}{{ difference|date('%y ans') }}{% endif %}
{% if leftMonths is not empty and leftMonths != 0 %}{{ difference|date('%m mois') }}{% endif %}
{% if leftDays is not empty and leftDays != 0 %}{{ difference|date('%d jours') }}{% endif %}
{% if leftHours is not empty %}{{ difference|date('%h heures') }}{% endif %}
Km Prévus :
{% if rental.rentalPricing.predicatedKm is not empty %}
{{ rental.rentalPricing.predicatedKm }} km
{% endif %}
Date et heure :
{% if rental.returnDate is not empty %}
{{ rental.returnDate|date('d/m/Y H:i') }}
{% endif %}
Lieu :
{% if rental.arrival is not empty %}
{{ rental.arrival }}
{% endif %}
Tarifs et prestations
{% set hasTableParentTitle = true %}
{% include TEMPLATE_SELLING_TABLE %}
Options et Assurances
{% if rental.rentalInsurance.isRenterInsurance == true %}
Loueur :
{% else %}
Locataire :
{% endif %}
Montant
N° Contrat assurance :
{% if rental.rentalInsurance.insuranceNumber is not empty %}
{{ rental.rentalInsurance.insuranceNumber }}
{% endif %}
Assureur :
{% if rental.rentalInsurance.insuranceName is not empty %}
{{ rental.rentalInsurance.insuranceName.name }}
{% endif %}
Assistance :
{% if rental.rentalInsurance.isAssistance == true %}
OUI
{% else %}
NON
{% endif %}
Franchise :
{% if rental.rentalInsurance.excessPriceWithTax is not empty %}
{{ rental.rentalInsurance.excessPriceWithTax|number_format(2, ',', ' ') }} {{ currencySymbol }}
{% endif %}
Vol :
{% if rental.rentalInsurance.excessTheftPriceWithTax is not empty %}
{{ rental.rentalInsurance.excessTheftPriceWithTax|number_format(2, ',', ' ') }} {{ currencySymbol }}
{% endif %}
Informations de tarification
Km supplémentaire (/Km) :
{% if rental.rentalPricing.priceExtraKmWithTax is not empty %}
{{ rental.rentalPricing.priceExtraKmWithTax|number_format(2, ',', ' ') }} {{ currencySymbol }}
{% else %}
{% endif %}
Carburant (/L) :
{% if rental.rentalPricing.priceExtraLiterWithTax is not empty %}
{{ rental.rentalPricing.priceExtraLiterWithTax|number_format(2, ',', ' ') }} {{ currencySymbol }}
{% else %}
{% endif %}
Commentaire : {% if rental.note is not empty %}{{ rental.note }}{% endif %}