{# Copyright (c) 2015 Chintalagiri Shashank Released under the MIT license #} {% extends "base_templates/base.html" %} {% block main %}
Idx | Ident | {% for loc in stage.locs %}{{ loc._name }}-AQ | {% endfor %}Total Reserved | Net Available Qty |
---|---|---|---|---|
{{ loop.index }} | {{ ident }} | {% for loc in stage.locs %}{% if loc.get_ident_qty(ident) == 0 or not loc.get_ident_qty(ident) %}-{% else %}{{loc.get_ident_qty(ident)}}{% endif %} | {% endfor %}{% 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 %} |