{% extends 'impression/base.html.twig' %} {% block stylesheets %} {% endblock %} {% block body %}
{{ vente.getMagasin().titre }}
{{ vente.getMagasin().adresse }}
Téléphone: {{ vente.getMagasin().telephone }}
Télécopie: {{ vente.getMagasin().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 %} {{ vente.getObjet() }}
{% 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 %} {% if retour.notes %} {% endif %}
Désignation Quantité Prix Unit Remise 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.getTauxRemise()|number_format(2, '.', ' ') }} - {{ (vp.getTotalHt()-vp.getTotalRemise())|number_format(2, '.', ' ') }}
{{ retour.notes }}
Total HT - {{ retour.getTotalHt()|number_format(2, '.', ' ') }}
Total TVA (20%) - {{ retour.getTotalTva()|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()) }}
{% endblock %}