{% extends 'base.html' %} {% load indonesian_filters %} {% block title %}{{ module_title }} - Manufacturing App{% endblock %} {% block content %}

Create Goods Receipt

Creating Goods Receipt for Purchase Order: {{ po.po_number }}

Supplier: {{ po.supplier.name }}

Order Total: {{ po.total_amount|format_rupiah }}

{% csrf_token %}
Items to Receive
{% if po.items.all %} {% for po_item in po.items.all %}
{{ po_item.product.name }}
{{ po_item.product.code }}
{{ po_item.quantity|indonesian_number:2 }} {{ po_item.product.unit_of_measure.abbreviation }}
{{ po_item.received_quantity|indonesian_number:2 }} {{ po_item.product.unit_of_measure.abbreviation }}
{% endfor %} {% else %}

No items found in this purchase order.

{% endif %}
Cancel
{% block extra_js %} {% endblock %} {% endblock %}