{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}Commande {{ po.orderNumber }}{% endblock %} {% block content %}
{{ po.statusLabel }} {% if po.supplier %}— {{ po.supplier.name }}{% endif %}
| Produit | Réf. fournisseur | PU | Commandé | Reçu | Restant | Total | Statut |
|---|---|---|---|---|---|---|---|
|
{{ line.productName }}
{{ line.productSku }}
|
{{ line.supplierReference ?? '-' }} | {{ line.unitPrice|number_format(0, ',', ' ') }} {{ settings.currencySymbol }} | {{ line.quantity }} | {{ line.receivedQuantity }} | {{ line.remainingQuantity }} | {{ line.total|number_format(0, ',', ' ') }} {{ settings.currencySymbol }} | {% if line.fullyReceived %} Complet {% elseif line.partiallyReceived %} Partiel {% else %} En attente {% endif %} |