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

Inventory Location {{ stage.loc.name }} ({{ stage.loc._name }})

{% if stage.loc._reader._xlf %} {% endif %}
Go to Transform
{% for line in stage.loc.lines %} {% endfor %}
Idx Canonical Representation Contextual Representation Available Qty Reserved Qty Net Available Qty
{{ loop.index }} {{ line.ident }} {% if line.context %} {% endif %} {{ stage.loc._reader.tf.get_contextual_repr(line.ident) }} {% if line.context %} {% endif %} {% if line._qty == 0 or not line._qty %}-{% else %}{{line._qty}}{% endif %} {% if line.reserved_qty == 0 or not line.reserved_qty %}-{% else %}{{line.reserved_qty}}{% endif %} {% if line.avail_qty == 0 or not line.avail_qty %}-{% else %}{{line.avail_qty}}{% endif %}
{% endblock %}