All Transactions
Page {{ txs.page }} of {{ txs.pages }}
| Receipt # | Date | Amount | Method | Cashier | Location | Discount | |
{% for t in txs.items %}
| #{{ 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 %} |
|
{% else %}| No transactions found |
{% endfor %}
{% if txs.pages > 1 %}
{% if txs.has_prev %}
Previous
{% endif %}
{% if txs.has_next %}
Next
{% endif %}
{% endif %}