| {% translate "Item" %} |
Total Quantity |
{% translate "Target" %} |
{% translate "Actions" %} |
{% for inv in inventory %}
{{ inv.item_type__name }}
|
{{ inv.total_qty|intcomma }} |
{% if inv.target > 0 %}{{ inv.target|intcomma }}{% else %}-{% endif %} |
|
{% endfor %}
{% if low_stock %}
Action Required: Restock Needed
Generate Master Shopping List
| {% translate "Item" %} |
Current Stock |
In Progress |
Target Threshold |
{% translate "Deficit" %} |
{% translate "Action" %} |
{% for item in low_stock %}
| {{ item.item_type.name }} |
{{ item.current_qty|intcomma }} |
{% if item.in_progress > 0 %}{{ item.in_progress|intcomma }}{% else %}-{% endif %} |
{{ item.target|intcomma }} |
{{ item.deficit|intcomma }} |
|
{% endfor %}
{% else %}
No low stock alerts! All tracked items are above their target thresholds.
{% endif %}
{% for fac_inv in facility_inventories %}
| {% translate "Item" %} |
{% translate "Quantity" %} |
{% for inv in fac_inv.inventory %}
{{ inv.item_type__name }}
|
{{ inv.total_qty|intcomma }} |
{% endfor %}
{% endfor %}