{% extends "base/module_base.html" %} {% set active_page = 'pos' %} {% block pagehead %}Transactions{% endblock %} {% set sidebar_bgtrigger = 'pos_tx' %} {% block sidebar %}{% include 'pos/blocks/sidebar.html' %}{% endblock %} {% block content %}

Transactions

{% for t in txs.items %} {% else %} {% endfor %}
Receipt #DateAmountMethodCashierLocationDiscount
{{ t.id }} {{ t.time.strftime('%Y-%m-%d %H:%M') if t.time else '-' }} ${{ '%.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 %} View
No transactions
{% endblock %}