{# Copyright (c) 2015 Chintalagiri Shashank Released under the MIT license #} {% extends "base_templates/base.html" %} {% block main %}

Inventory Locations

Combined Inventory Status

{% for loc in stage.locs %} {% endfor %} {% for ident in stage.idents %} {% for loc in stage.locs %} {% endfor %} {% endfor %}
Idx Ident {{ loc._name }}-AQTotal Reserved Net Available Qty
{{ loop.index }} {{ ident }} {% if loc.get_ident_qty(ident) == 0 or not loc.get_ident_qty(ident) %}-{% else %}{{loc.get_ident_qty(ident)}}{% endif %} {% if stage.inv.get_total_reservations(ident) == 0 or not stage.inv.get_total_reservations(ident) %}-{% else %}{{stage.inv.get_total_reservations(ident)}}{% endif %} {% if stage.inv.get_total_availability(ident) == 0 or not stage.inv.get_total_availability(ident) %}-{% else %}{{stage.inv.get_total_availability(ident)}}{% endif %}
{% endblock %}