{{ organization.name|default:"Your Business Name" }}

{% if organization.address %}

{{ organization.address }}

{% endif %} {% if organization.phone %}

Tel: {{ organization.phone }}

{% endif %} {% if organization.email %}

Email: {{ organization.email }}

{% endif %} {% if organization.business_registration_no %}

Reg No: {{ organization.business_registration_no }}

{% endif %} {% if organization.sst_registered %}

SST Reg No: {{ organization.tax_id|default:"N/A" }}

{% endif %}
Receipt #: {{ sale.sale_number }}
Date/Time: {{ sale.sale_date|date:"d/m/Y H:i" }}
Cashier: {{ sale.cashier.get_full_name|default:sale.cashier.username }}
{% if sale.customer %}
Customer: {{ sale.customer.name }}
{% endif %}
{% for item in sale.items.all %} {% endfor %}
Item Amount
{{ item.product.name }}
{{ item.quantity }} x RM {{ item.unit_price }} {% if item.sst_percentage > 0 %}
SST ({{ item.sst_percentage }}%): RM {{ item.sst_amount }} {% endif %}
RM {{ item.total }}
Subtotal: RM {{ sale.subtotal }}
{% if sale.total_sst > 0 %}
SST: RM {{ sale.total_sst }}
{% endif %}
TOTAL: RM {{ sale.total_amount }}
{% if sale.bank_account %}
Payment: Bank Transfer - {{ sale.bank_account.name }}
{% endif %} {% if sale.notes %}
Notes: {{ sale.notes }}
{% endif %}