{% extends 'index.html' %} {% block sign_in %} Sign out ({{ session.profile.name }}) {% endblock %} {% block content %}

Current inventory

Go to orders Go to sales Go to samples
{% for item in c.inventory %} {% endfor %}
Item Category On order In stock Committed Available to sell Sold to date Samples
{{ item.item_name }} {{ item.item_category }} {{ item.qty_ordered }} {{ item.qty_received - item.qty_sold - item.qty_sample_used - item.qty_sample_current }} {{ item.qty_committed }} {{ item.qty_received - item.qty_sold - item.qty_committed - item.qty_sample_used - item.qty_sample_current }} {{ item.qty_sold }} {{ item.qty_sample_current }}
{% endblock %}