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

Goods Receipts

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% if grs %}
{% for gr in grs %} {% endfor %}
GR Number PO Number Supplier Receipt Date Received By Actions
{{ gr.gr_number }} {{ gr.po.po_number }} {{ gr.po.supplier.name }} {{ gr.receipt_date|date:"M d, Y" }} {% if gr.received_by %} {{ gr.received_by.get_full_name|default:gr.received_by.username }} {% else %} Not specified {% endif %}
Total Receipts

{{ grs.count }}

This Month

{{ grs.count }}

Active Suppliers

{{ grs.count }}

{% else %}

No Goods Receipts Found

Start by creating a goods receipt for a purchase order.

View Purchase Orders
{% endif %}
{% endblock %}