{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}Réception {{ po.orderNumber }}{% endblock %} {% block content %}

Réception de {{ po.orderNumber }}

{% if po.supplier %}{{ po.supplier.name }} — {% endif %} {{ po.receivedItemsCount }}/{{ po.itemsCount }} articles déjà reçus

Retour
{% if unreceivedLines|length > 0 %}

Articles en attente de réception

Indiquez les quantités reçues pour chaque ligne.

{% for line in unreceivedLines %} {% endfor %}
Produit Réf. fournisseur PU Commandé Déjà reçu Restant Qté reçue
{{ line.productName }}
{{ line.productSku }}
{{ line.supplierReference ?? '-' }} {{ line.unitPrice|number_format(0, ',', ' ') }} {{ settings.currencySymbol }} {{ line.quantity }} {{ line.receivedQuantity }} {{ line.remainingQuantity }}
Annuler
{% else %}

Tout a été reçu

Tous les articles de cette commande ont été réceptionnés.

Retour à la commande
{% endif %}
{% endblock %}