{% extends "shopyo_base/module_base.html" %} {% set active_page = 'inventory' %} {% block pagehead %}
{{ products|length }} products tracked
Low Stock
{{ low_stock|length }}
Out of Stock
{{ out_of_stock|length }}
Valuation (Cost)
Valuation (Retail)
Potential Margin
| Name | Stock | Cost | Retail | Margin | Value (Cost) |
|---|---|---|---|---|---|
|
{% if (p.in_stock or 0) == 0 %}
{% elif p.min_stock and (p.in_stock or 0) <= p.min_stock %}
{% else %}
{% endif %}
{{ p.name }}
|
{{ p.in_stock or 0 }}
{% if p.min_stock and p.in_stock %}
{% endif %}
|
${{ '%.2f'|format(p.cost_price|float) }} | ${{ '%.2f'|format(p.selling_price|float) }} | ${{ '%.2f'|format((p.selling_price|float) - (p.cost_price|float)) }} | ${{ '%.2f'|format((p.cost_price|float) * (p.in_stock or 0)) }} |
| No products | |||||