{% extends "base/module_base.html" %} {% set active_page = 'pos' %} {% block pagehead %}
| Location #{{ loc_id }} | ${{ '%.2f'|format(amt) }} |
| {{ method|capitalize }} | ${{ '%.2f'|format(amt) }} |
| Total | ${{ '%.2f'|format(total_sales) }} |
| Cashier #{{ cid }} | {{ count }} tx(s) |
| Taxable Sales | ${{ '%.2f'|format(total_sales) }} |
| Tax (10%) | ${{ '%.2f'|format(total_sales * 0.1) }} |
| Net Sales | ${{ '%.2f'|format(total_sales * 0.9) }} |
| Date | Amount | Method | Cashier | Discount |
|---|---|---|---|---|
| {{ 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.discount_type or '-' }} {{ t.discount_value or '' }} |
| No transactions | ||||