{% extends "base.html" %} {% load allauth %} {% load static humanize %} {% block title %}Inventory Items - Inventory Management{% endblock %} {% block css %} {% endblock %} {% block content %}
|
|
Item Code | Item Name | Category | Type | Manufacturer | Current Stock | Unit Cost | Total Value | Status | Actions |
|---|---|---|---|---|---|---|---|---|---|---|
|
|
{{ item.item_code }} |
{{ item.item_name }}
{% if item.description %}{{ item.description|truncatechars:80 }} {% endif %}
|
{% if item.get_category_display %} {{ item.get_category_display }} {% else %}-{% endif %} | {{ item.get_item_type_display }} | {{ item.manufacturer.name|default:item.manufacturer|default:"-" }} | {% with cs=item.current_stock|default:0 rp=item.reorder_point|default:0 %} {% if cs|floatformat:0 <= 0 %} {{ cs }} {{ item.get_unit_of_measure_display }} {% elif cs|floatformat:0 <= rp|floatformat:0 %} {{ cs }} {{ item.get_unit_of_measure_display }} {% else %} {{ cs }} {{ item.get_unit_of_measure_display }} {% endif %} {% endwith %} | ${{ item.unit_cost|default:0|floatformat:2|intcomma }} | {% with tv=item.total_value|default:item.current_stock|default:0|floatformat:2 %} {% if item.total_value %} ${{ item.total_value|floatformat:2|intcomma }} {% else %} ${{ item.current_stock|default:0|floatformat:0|add:"0"|floatformat:0|intcomma }} {% endif %} {% endwith %} | {# {% if item.get_stock_status_display %}#} {# {% with s=item.stock_status %}#} {# {% if s == 'in_stock' %}{% setvar 'success' as ss %}{% elif s == 'low_stock' %}{% setvar 'warning' as ss %}#} {# {% elif s == 'out_of_stock' %}{% setvar 'danger' as ss %}{% elif s == 'needs_reorder' %}{% setvar 'info' as ss %}#} {# {% else %}{% setvar 'secondary' as ss %}{% endif %}#} {# {{ item.get_stock_status_display }}#} {# {% endwith %}#} {# {% else %}-{% endif %}#} | |
| No items found. | ||||||||||