In the Print dialogue, select "Save as PDF" as your destination.

INVOICE
Billed To

{{ order.customer_name }}

{{ order.customer_email or "No Email Provided" }}

{{ order.customer_phone }}

Invoice Details
Invoice No:{{ order.id }}
Date:{{ order.date.strftime('%B %d, %Y') if order.date else 'N/A' }}
Status:{{ order.status.replace('_', ' ') }}
{% for item in order.items %} {% endfor %}
Item Description Qty Unit Price Amount
{{ item.product_name }} {{ item.quantity }} {{ currency }} {{ "{:,.0f}".format(item.price) }} {{ currency }} {{ "{:,.0f}".format(item.price * item.quantity) }}
Subtotal {{ currency }} {{ "{:,.0f}".format(order.subtotal) }}
{% if order.discount and order.discount > 0 %}
Discount Applied - {{ currency }} {{ "{:,.0f}".format(order.discount) }}
{% endif %}
Shipping Fee {{ currency }} 0
Total Amount {{ currency }} {{ "{:,.0f}".format(order.final_total) }}