{{ store_name }}
{{ store_address }}
Tel: {{ store_phone }}
{{ store_website }}
Receipt #: {{ receipt_number }}
Date: {{ transaction_date }}
Time: {{ transaction_time }}
Cashier: {{ cashier_name }}
Customer: {{ customer_name }}
Cust ID: {{ customer_id }}
{% for item in items %} {% endfor %}
Item Qty Price Total
{{ item.product_name }}
SKU: {{ item["sku"] }}
{{ item["quantity"] }} ${{ "%.2f"|format(item["unit_price"]) }} ${{ "%.2f"|format(item["item_total"]) }}
{% if discount_amount > 0 %} {% endif %}
Subtotal: ${{ "%.2f"|format(subtotal) }}
Tax ({{ "%.2f"|format(tax_rate) }}%): ${{ "%.2f"|format(tax_amount) }}
Discount: -${{ "%.2f"|format(discount_amount) }}
TOTAL: ${{ "%.2f"|format(total) }}
Payment Method: {{ payment_method }}
{% if payment_method != "Cash" and card_last_four %}
Card ending in: {{ card_last_four }}
{% endif %}
Amount Paid: ${{ "%.2f"|format(total) }}
{{ receipt_number }}
Thank you for shopping with us!
{{ return_policy }}