{% 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 %} |
| 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 %} |
| 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, '.', ' ') }} |
| 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, '.', ' ') }} |
|---|