{% extends "shopyo_base/module_base.html" %} {% set active_page = 'pos' %} {% block pagehead %}Transactions{% endblock %} {% block sidebar %}{% include 'pos/blocks/sidebar.html' %}{% endblock %} {% block module_content %}

Transactions

All POS transactions

All Transactions

Page {{ txs.page }} of {{ txs.pages }}

{% for t in txs.items %} {% else %} {% endfor %}
Receipt #DateAmountMethodCashierLocationDiscount
#{{ t.id }} {{ t.time.strftime('%Y-%m-%d %H:%M') if t.time else '-' }} {{ currency_symbol }}{{ '%.2f'|format(t.total_amount|float) }} {{ t.method_of_payment }} {{ t.cashier_id }} {{ t.location_id or '-' }} {% if t.discount_type %}{{ t.discount_type }} {{ t.discount_value }}{% endif %}
No transactions found
{% if txs.pages > 1 %}
{% if txs.has_prev %} Previous {% endif %} {% if txs.has_next %} Next {% endif %}
{% endif %}
{% endblock %}