{% set active = "" %} {% extends 'base.html.twig' %} {% block title %}Fournisseur{% endblock %} {% block body %}

Fournisseur

Id {{ fournisseur.id }}
Nom {{ fournisseur.nom }}
{% for commande in fournisseur.commande %} {% else %} {% endfor %}
actions Status Id Numero Montant Tva DateLimiteExp DateExp DateOrder Fournisseur Infos
show edit {% if commande.hasFournisseur() %} trashSupprimer {% endif %} {{commande.status}} {{ commande.id }} {{ commande.numero }} {{ commande.montant }} {{ commande.tva }} {{ commande.dateLimiteExp ? commande.dateLimiteExp: '' }} {{ commande.dateExp ? commande.formattedDateExp : '' }} {{ commande.dateOrder ? commande.formattedDateOrder : '' }} {{ commande.fournisseur}} {{ commande.infos }}
no records found
{% for item in fournisseur.details %} {% endfor %}
Article Quantité P.U Total Commande Commande FRN Client
{{ item }} {{ item.quantite }} {# {{ item.article.prix }} € #} {# {{ item.TotalTTC }} € #} {% if item.commande is not null and item.commande.id not in [1521] %} {{item.commande}} {% endif %} {{ item.commandeFournisseur}} {% if item.commande is not null and item.commande.id not in [1521] %} {{item.client}} {% endif %} Voir Supprimer
back to list edit {{ include('fournisseur_crud/_delete_form.html.twig') }}
{% endblock %}