{% extends "base.html" %} {% block title %}{{ shop.name }} Inventory - Ghana Wholesale Management{% endblock %} {% block page_title %}{{ shop.name }} - Inventory{% endblock %} {% block breadcrumb %} {% endblock %} {% block page_actions %}
Back to Shop Create Transfer
{% endblock %} {% block content %}
Products in Stock
{{ inventory.count }}
Available Units
{% with total=inventory|length %} {{ inventory|length|default:0 }} {% endwith %}
Low Stock Items
{% with low_stock_count=inventory|length %} {% if low_stock_filter %} {{ inventory|length }} {% else %} {{ inventory|length|default:0 }} {% endif %} {% endwith %}
Total Value
GH₵ {% with total_value=0 %} {% for item in inventory %} {% with item_value=item.quantity|default:0|add:item.product.cost_price|default:0 %} {{ item_value|floatformat:2 }} {% endwith %} {% empty %} 0.00 {% endfor %} {% endwith %}
Showing {{ inventory|length }} items
{% if inventory %}
{% for item in inventory %} {% endfor %}
SKU Product Category Quantity Available Reorder Point Cost Price Selling Price Stock Value Status Actions
{{ item.product.sku }} {% if item.product.barcode %}
{{ item.product.barcode }} {% endif %}
{{ item.product.name }}
{{ item.product.description|truncatechars:30 }}
{{ item.product.category.name|default:"-" }} {{ item.quantity }} {{ item.available }} {{ item.reorder_point }} GH₵{{ item.product.cost_price|floatformat:2 }} {% if item.selling_price %} GH₵{{ item.selling_price|floatformat:2 }} {% else %} GH₵{{ item.product.selling_price|floatformat:2 }} {% endif %} GH₵{{ item.stock_value|floatformat:2 }} {% if item.available == 0 %} Out of Stock {% elif item.is_low_stock %} Low Stock {% else %} In Stock {% endif %}
Inventory Summary
Total Items: {{ inventory|length }}
In Stock: {{ inventory|length }}
Low Stock: {{ inventory|length }}
Out of Stock: 0
Value Summary
Total Cost Value: GH₵ {% with total_cost=0 %} {% for item in inventory %} {% with item_cost=item.quantity|default:0|add:item.product.cost_price|default:0 %} {{ item_cost|floatformat:2 }} {% endwith %} {% empty %} 0.00 {% endfor %} {% endwith %}
Total Selling Value: GH₵ {% with total_sell=0 %} {% for item in inventory %} {% with sell_price=item.selling_price|default:item.product.selling_price|default:0 %} {% with item_sell=item.quantity|default:0|add:sell_price %} {{ item_sell|floatformat:2 }} {% endwith %} {% endwith %} {% empty %} 0.00 {% endfor %} {% endwith %}
Shop Information
Shop: {{ shop.name }}
Type: {{ shop.get_shop_type_display }}
Location: {{ shop.city }}
Manager: {{ shop.manager.get_full_name|default:"Not assigned" }}
{% else %}
{% if search_query or selected_category or low_stock_filter %}
No inventory items found

Try adjusting your search or filters

Clear Filters {% else %}
No inventory found for this shop

This shop has no inventory items yet.

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