{% extends "base/main_base.html" %} {% set active_page ='pos' %} {% block pagehead %} {% endblock %} {% block main_container %}
{% if current_user.is_admin %} {% endif %}
{% if quick_keys %}
{% for k in quick_keys %}
{{ k.label or k.product.name[:12] }}
{% endfor %}
{% endif %}
{% for category in categories %} {% for subcategory in category.subcategories %} {% for product in subcategory.products %}
{% set is_low = product.min_stock and product.min_stock > 0 and product.in_stock <= product.min_stock and product.in_stock > 0 %}
{{product.name}}
{{product.name}}
$ {{product.selling_price}} {%- if product.in_stock == 0 -%} Out of stock {%- elif is_low -%} {{product.in_stock}} left {%- else -%} {{product.in_stock}} in stock {%- endif -%}
{% endfor %} {% endfor %} {% endfor %}
Current Order
0 Items
Product Qty Total
Cart is empty

Select items from the left

{% endblock %}