{% extends 'base.html' %} {% block title %}Confirm Receipt — {{ po.reference }}{% endblock %} {% block content %}

Confirm Receipt

← Back
Confirming receipt will add stock for all items {% if po.account %} and deduct {{ po.total|floatformat:0 }} from {{ po.account.name }}. {% endif %} This cannot be undone.
{% for item in po.items.all %} {% endfor %}
ProductQtyCostTotal
{{ item.product.name }} {{ item.quantity }} {{ item.unit_cost|floatformat:0 }} {{ item.line_total|floatformat:0 }}
Total: {{ po.total|floatformat:0 }}
{% csrf_token %}
Cancel
{% endblock %}