{% extends "base.html" %} {% block title %}Giacenze - Mago4 Demo{% endblock %} {% block window_tabs %}inventory Giacenze{% endblock %} {% block content %}
| Codice | Descrizione | Giacenza | Scorta Min. | Da Riordinare | |
|---|---|---|---|---|---|
| {{ p.code }} | {{ p.description }} | {{ p.quantity_in_stock }} {{ p.uom }} | {{ p.reorder_level }} {{ p.uom }} | {{ p.max_stock - p.quantity_in_stock }} {{ p.uom }} |
| Codice | Descrizione | Categoria | Giacenza | Scorta Min. | Costo Unit. | Valore | Stato |
|---|---|---|---|---|---|---|---|
| {{ p.code }} | {{ p.description }} | {{ p.category }} | {{ p.quantity_in_stock }} {{ p.uom }} | {{ p.reorder_level }} {{ p.uom }} | € {{ "%.2f"|format(p.purchase_price) }} | € {{ "%.2f"|format(p.quantity_in_stock * p.purchase_price) }} | {% if p.quantity_in_stock <= p.reorder_level %} warning Sottoscorta {% elif p.quantity_in_stock <= p.reorder_level + 20 %} info In esaurimento {% else %} check OK {% endif %} |