{% extends 'impression/base.html.twig' %} {% block stylesheets %} {% endblock %} {% block body %}
{{ app.user.getDefaultMagasin().titre }}
{{ app.user.getDefaultMagasin().adresse }}
Téléphone: {{ app.user.getDefaultMagasin().telephone }}
Télécopie: {{ app.user.getDefaultMagasin().fax }}
Avoir N°: {{ retour.numRetour() }}
Etablie le: {{ retour.getDateRetour()|date("d/m/Y") }}
{{ vente.getClient.getRaisonSociale() }}
{% if(vente.getClient.getAdresse()) %}{{ vente.getClient.getAdresse() }}
{% endif %} {% if(vente.getClient.getTelephone()) %}Téléphone: {{ vente.getClient.getTelephone() }}
{% endif %} {% if(vente.getClient.getIce()) %}ICE: {{ vente.getClient.getIce() }}
{% endif %}
{% if vente.getReparation() %} {% if vente.getReparation().getProduit() %}
Informations sur le véhicule
{% if vente.getReparation().getProduit.getMarque() %}Marque: {{ vente.getReparation().getProduit.getMarque() }}
{% endif %} {% if vente.getReparation().getProduit.getModele() %}Modèle: {{ vente.getReparation().getProduit.getModele() }}
{% endif %}
{% for attribut in vente.getReparation().getProduit().getAttributValues() %} {% if attribut.getValue() %} {{ attribut.getProduitAttribut.getLabel() }}: {{ attribut.getValue() }} / {% endif %} {% endfor %}
{% endif %} {% endif %}
{% for vp in retour.getRproduits() %} {% endfor %}
Désignation Quantité Prix Unit Montant HT
{{ vp.getVenteProduit().getProduit().getTitre() }} {% if vp.getVenteProduit().getProduit().getReference() %}
Réf: {{ vp.getVenteProduit().getProduit().getReference() }}
{% endif %}
- {{ vp.getQuantite() }} {{ vp.getPrixHt()|number_format(2, '.', ' ') }} - {{ vp.getPrixHt()*vp.getQuantite()|number_format(2, '.', ' ') }}
{% if(retour.getTotalRemise() > 0) %} {% endif %}
Total HT - {{ retour.getTotalHt()|number_format(2, '.', ' ') }}
Total TVA - {{ retour.getTotalTva()|number_format(2, '.', ' ') }}
Total remise - {{ retour.getTotalRemise()|number_format(2, '.', ' ') }}
Total TTC - {{ retour.getTotalTtc()|number_format(2, '.', ' ') }}

Le présent avoir est arrêté à la somme de: moins {{ chiffre_en_lettre.int2str(retour.getTotalTtc()) }}
{{ app.user.getDefaultMagasin().footerDocuments }}
{% endblock %}