{% extends "base.html" %} {% load static %} {% block title %}Inventory Stock - Inventory Management{% endblock %} {% block css %} {% endblock %} {% block content %}

Inventory Stock Stock Level Management & Tracking

Stock Management

{{ total_items }}
Total Items
{{ in_stock_items }}
In Stock
{{ low_stock_items }}
Low Stock
{{ out_of_stock_items }}
Out of Stock
{% for location in locations %} {% endfor %}
{% for category in categories %} {% endfor %}
{% for stock in object_list %} {% empty %} {% endfor %}
Item Location Lot Number Current Stock Available Expiry Date Status Actions
{% if stock.inventory_item.image %} {{ stock.inventory_item.name }} {% else %}
{% endif %}
{{ stock.inventory_item.item_name }}
{{ stock.inventory_item.item_code }}
{{ stock.location.name }}
{{ stock.location.location_type }}
{{ stock.lot_number|default:"--" }}
{{ stock.quantity_on_hand }}
{{ stock.inventory_item.unit_of_measure }}
{{ stock.quantity_available }}
Available
{% if stock.expiration_date %}
{{ stock.expiration_date|date:"M d, Y" }}
{% if stock.is_expired %}
Expired
{% elif stock.is_expiring_soon %}
Expiring Soon
{% endif %} {% else %} No expiry {% endif %}
{% if stock.quantity_available >= stock.inventory_item.reorder_point %} AVAILABLE
reorder point {{ stock.inventory_item.reorder_point }} {% elif stock.quantity_available <= stock.inventory_item.reorder_point %} LOW STOCK
reorder point {{ stock.inventory_item.reorder_point }} {% elif stock.quantity_available == 0 %} OUT OF STOCK
reorder point {{ stock.inventory_item.reorder_point }} {% else %} {{ stock.inventory_item.reorder_point }} {% endif %} {% if stock.is_reserved %}
{{ stock.quantity_reserved }} Reserved
{% endif %}
No stock records found
Add First Item
{% endblock %} {% block js %} {% endblock %}