{% extends "base.html" %} {% load static %} {% block title %}{{ object.item_name }} - Inventory Item Details{% endblock %} {% block css %} {% endblock %} {% block content %}
| Item Code: | {{ object.item_code }} |
| Item Name: | {{ object.item_name }} |
| Category: |
{{ object.get_category_display }}
{% if object.subcategory %}
{{ object.subcategory }} {% endif %} |
| Item Type: | {{ object.get_item_type_display }} |
| Unit of Measure: | {{ object.get_unit_of_measure_display }} |
| Package Size: | {{ object.package_size }} {{ object.get_unit_of_measure_display }}{{ object.package_size|pluralize }} |
| Manufacturer: | {{ object.manufacturer|default:"Not specified" }} |
| Model Number: | {{ object.model_number|default:"Not specified" }} |
| Part Number: | {{ object.part_number|default:"Not specified" }} |
| UPC Code: | {{ object.upc_code|default:"Not specified" }} |
| Unit Cost: | ${{ object.unit_cost }} |
| List Price: | ${{ object.list_price }} |
Current stock ({{ object.current_stock }}) is at or below the reorder point ({{ object.reorder_point }}). Consider placing a new order.
| Location | Lot Number | Quantity | Expiration | Quality Status | Actions |
|---|---|---|---|---|---|
| {{ stock.location.name }} | {{ stock.lot_number|default:"-" }} |
{{ stock.quantity_on_hand }}
{% if stock.quantity_reserved > 0 %}
({{ stock.quantity_reserved }} reserved) {% endif %} |
{% if stock.expiration_date %}
{% if stock.is_expired %}
{{ stock.expiration_date|date:"M d, Y" }}
Expired {% elif stock.days_to_expiry <= 30 %} {{ stock.expiration_date|date:"M d, Y" }} {{ stock.days_to_expiry }} days {% else %} {{ stock.expiration_date|date:"M d, Y" }} {% endif %} {% else %} No expiration {% endif %} |
{{ stock.get_quality_status_display }} |
No stock records found for this item.
Add Initial StockNo recent transactions for this item.
| Temperature: | {% if object.storage_temperature_min and object.storage_temperature_max %} {{ object.storage_temperature_min }}°C to {{ object.storage_temperature_max }}°C {% elif object.storage_temperature_min %} Above {{ object.storage_temperature_min }}°C {% elif object.storage_temperature_max %} Below {{ object.storage_temperature_max }}°C {% endif %} |
| Humidity: | {% if object.storage_humidity_min and object.storage_humidity_max %} {{ object.storage_humidity_min }}% to {{ object.storage_humidity_max }}% {% elif object.storage_humidity_min %} Above {{ object.storage_humidity_min }}% {% elif object.storage_humidity_max %} Below {{ object.storage_humidity_max }}% {% endif %} |
| Shelf Life: | {{ object.shelf_life_days }} days |
No special storage requirements specified.
No primary supplier assigned.
Assign Supplier