In the Print dialogue, select "Save as PDF" as your destination.
{{ order.customer_name }}
{{ order.customer_email or "No Email Provided" }}
{{ order.customer_phone }}
| Invoice No: | {{ order.id }} |
| Date: | {{ order.date.strftime('%B %d, %Y') if order.date else 'N/A' }} |
| Status: | {{ order.status.replace('_', ' ') }} |
| Item Description | Qty | Unit Price | Amount |
|---|---|---|---|
| {{ item.product_name }} | {{ item.quantity }} | {{ currency }} {{ "{:,.0f}".format(item.price) }} | {{ currency }} {{ "{:,.0f}".format(item.price * item.quantity) }} |