Back to Erpnext

Item Dashboard List

erpnext/stock/dashboard/item_dashboard_list.html

16.20.1463 B
Original Source

{% for d in data %}

{{ d.warehouse }}

{% if show_item %} {{ d.item_code }} {% if d.item_name != d.item_code %}({{ d.item_name }}){% endif %} {% endif %}

{{ d.reserved_stock }}

{{ d.total_reserved }} {{ d.actual_qty }} {{ (d.pending_qty > 0) ? ("(" + d.pending_qty+ ")") : "" }} {% if d.pending_qty > 0 %} {% endif %}
{% if can_write %} {% if d.actual_qty %} {{ __("Move") }} {% endif %} {{ __("Add") }} {% endif %}

{% endfor %}