{% extends "base.html" %} {% block title %}Warehouse Inventory{% endblock %} {% block head %} {% endblock %} {% block content %}

Warehouse Inventory - Products/Boxes/Locations

🔍 Search Inventory

Clear
{% if inventory_data %}

Total Records

{{ inventory_data|length }}

Unique CP Codes

{{ inventory_data|map(attribute=0)|unique|list|length }}

Unique Boxes

{{ inventory_data|map(attribute=1)|unique|list|length }}

Locations Used

{{ inventory_data|map(attribute=2)|select|unique|list|length }}
{% endif %}

Inventory Details

{% if inventory_data %} {% for row in inventory_data %} {% endfor %}
CP Code Box Number Location Scanned At Scanned By Placed At Location Placed By Box Status Location Status
{{ row[0] }} {{ row[1] }} {{ row[2] or 'Not assigned'|safe }} {{ row[3].strftime('%Y-%m-%d %H:%M') if row[3] else '' }} {{ row[4] or '' }} {{ row[5].strftime('%Y-%m-%d %H:%M') if row[5] else '' }} {{ row[6] or '' }} {{ row[7]|upper if row[7] else 'N/A' }} {% if row[8] %} {{ row[8]|upper }} {% else %} - {% endif %}
{% else %}

📦 No inventory data found

{% if search_cp or search_box or search_location %}

Try adjusting your search criteria

{% else %}

Start scanning products to boxes to populate inventory

{% endif %}
{% endif %}
{% endblock %}