Receipt Register
Review, print, resend, or start returns from one admin view.
Receipts Found
{{ total_count }}
Gross Sales
{{ currency_symbol }} {{ "{:,.2f}".format(total_sales|float) }}
Returns Recorded
{{ currency_symbol }} {{ "{:,.2f}".format(total_returns|float) }}
| Receipt | Date | Customer | Payment | Status | Total | Returned | Net | Action |
|---|---|---|---|---|---|---|---|---|
|
{{ receipt_code }}
Sale #{{ sale[0] }} | Cashier {{ sale[11] or '-' }}
|
{{ sale[2] }} |
{% if sale[9] %}
{{ sale[9] }}
{% endif %}
{{ sale[10] or 'Walk-in customer' }}
|
{{ sale[6]|replace('_', ' ')|title }} | {{ sale[5]|replace('_', ' ') }} | {{ currency_symbol }} {{ "{:,.2f}".format(total) }} | {{ currency_symbol }} {{ "{:,.2f}".format(returned) }} | {{ currency_symbol }} {{ "{:,.2f}".format(total - returned) }} |
{% if total_pages %}
Page {{ page }} of {{ total_pages }}
{% else %}
No pages
{% endif %}
{% else %}
No receipts found.
{% endif %}
Try another search, change the status filter, or record a new sale.