{% extends 'core/base.html' %} {% load currency_filters %} {% load static %} {% block title %}Confirm Receipt — PO #{{ order.id }}{% endblock %} {% block topbar_title %}Confirm Goods Receipt{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Confirm Goods Receipt

PO #{{ order.id }} — {{ order.supplier.name }}

Heads up! Confirming receipt will immediately add the quantities below to inventory and update the cost prices. This action cannot be undone.
{% csrf_token %}
Receiving Branch
{% if branches|length > 1 %}

Select which branch is receiving these goods. Stock will be tracked per-branch.

{% for branch in branches %} {% endfor %} {% else %} {% for branch in branches %}
{{ branch.name }}
Only branch — stock will be assigned here
Auto-selected
{% empty %}
No branches found. Stock will be added to global quantity.
{% endfor %} {% endif %}
Items to be Received
{% for item in order.items.all %}
{{ item.product.name }}
Unit cost: {% money item.unit_cost %}  •  Current stock: {{ item.product.stock_quantity }}  →  {{ item.product.stock_quantity|add:item.quantity }} after receipt
+{{ item.quantity }}
{% empty %}
No items found on this order.
{% endfor %}
Total Order Cost {% money order.total_cost %}
Cancel
{% endblock %}