{% extends "base.html" %} {% load static %} {% block title %}Inventory Stock - Inventory Management{% endblock %} {% block css %} {% endblock %} {% block content %}
|
|
Item | Location | Lot Number | Current Stock | Available | Expiry Date | Status | Actions |
|---|---|---|---|---|---|---|---|---|
|
|
{% if stock.inventory_item.image %}
{{ 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
|
||||||||