{% extends 'App/Pdf/_include/_layout.pdf.html.twig' %} {% block stylesheet %} {{ parent() }} {% endblock %} {% block content %} {% apply spaceless %} {% if app.request %} {% set baseUrl = app.request.getSchemeAndHttpHost() %} {% else %} {% set baseUrl = base_url %} {% endif %}
ALBERT DELOIN
24, rue de la Gare
69009 LYON
FRANCE
tél. +33 (0)4 72 85 61 00
www.albert-deloin.fr
contact@albert-deloin.fr
Facture N° {{ invoice_number }}
Date de facture
{{ invoice_date|date('d/m/Y') }}
{% if not payment_amount or 0 < (invoice_amount_with_tax - payment_amount) %}
Échéance
{{ invoice_date|date('d/m/Y') }}
{% endif %}
Commande N°
{{ order_uuid }}
Code Client
{{ customer_code }}
N° TVA Client
{{ customer_tax_number }}
Contact Client
{{ customer_contact_name }}
Email
{{ customer_contact_email }}
Téléphone
{{ customer_contact_phone }}
Adresse de facturation
{{ customer_name }}
{{ customer_address_1 }}
{{ customer_address_2 }}
{{ customer_zip_code }} {{ customer_city }}
{{ customer_country|countryName }}
{% for line in invoice_lines %} {% endfor %} {% if invoice_lines|length < 27 %} {% set max_loop = 26 - invoice_lines|length %} {% for i in 0..max_loop %} {% endfor %} {% endif %}
Réf. Désignation Quantité P.U. Montant HT
{{ line.reference }} {{ line.designation }} {% if line.quantity %}{{ line.quantity }}{% endif %} {% if line.price_unit %}{{ line.price_unit|number_format(2,',',' ') }}{% endif %} {% if line.price_total %}{{ line.price_total|number_format(2,',',' ') }}{% endif %}
 
Règlement
{% if payment_type %}{{ payment_type }}{% endif %}
Date et heure
{% if payment_date %}{{ payment_date|date('d/m/Y H:i') }}{% endif %}
Montant
{% if payment_amount %}{{ payment_amount|number_format(2,',',' ') }} €{% endif %}
Autorisation
{% if payment_auth %}{{ payment_auth }}{% endif %}
Total HT {{ invoice_amount_pre_tax|number_format(2,',',' ') }} €
TVA (20%) {{ invoice_amount_tax|number_format(2,',',' ') }} €
Total TTC {{ invoice_amount_with_tax|number_format(2,',',' ') }} €
Paiement reçu {% if payment_amount %}{{ payment_amount|number_format(2,',',' ') }}{% else%}0{% endif%} €
A payer {% if payment_amount %}{{ (invoice_amount_with_tax - payment_amount)|number_format(2,',',' ') }}{% else %}{{ payment_amount|number_format(2,',',' ') }}{% endif%} €
{% if t_and_c %}

Conditions générales de vente

{{ t_and_c|raw }}
{% endif %}
{% endapply %} {% endblock %}