{% if produit.reference %}
| Référence |
{{ produit.reference }} |
|
{% endif %}
{% if produit.categorie %}
| Catégorie |
{{ produit.categorie }} |
|
{% endif %}
{% if produit.emplacement %}
| Emplacement |
{{ produit.emplacement }} |
|
{% endif %}
{% if produit.titre %}
| Designation |
{{ produit.titre }} |
|
{% endif %}
{% if produit.marque %}
| Marque |
{{ produit.marque }} |
|
{% endif %}
{% if produit.description %}
| Description |
{{ produit.description }} |
|
{% endif %}
{% if produit.caracteristique %}
| Caractéristique |
{{ produit.caracteristique }} |
|
{% endif %}
{% if produit.codebare %}
| Code à bare |
{{ produit.codebare }} |
|
{% endif %}
{% if app.user.aDroit('achat_consultation') %}
| Prix d'achat HT |
{{ produit.prixachat|number_format(2, ',', ' ') }} |
|
{% endif %}
{% if app.user.aDroit('vente_consultation') %}
| Prix de vente HT |
{{ produit.prixvente|number_format(2, ',', ' ') }} |
|
{% if networkMasterPrixVente is not null %}
| Prix de vente HT (recommandé) |
{{ networkMasterPrixVente|number_format(2, ',', ' ') }} |
|
{% endif %}
{% endif %}
| Quantitée en stock |
{{ produit.quantitestock|number_format(2, ',', ' ') }} |
|
| Quantitée consignée |
{{ produit.quantiteconsigne|number_format(2, ',', ' ') }} |
|
| Alert stock |
{{ produit.quantitestockmin|number_format(2, ',', ' ') }} |
|
|
|
|
{% for attribut in produit.getAttributValues() %}
{% if attribut.getValue() %}
| {{ attribut.getProduitAttribut.getLabel() }} |
{{ attribut.getValue() }} |
|
{% endif %}
{% endfor %}