Docs
You are viewing:
Product Catalog 2.0
Customizing the Chargebee invoice template can enhance readability and ensure that all necessary information is clearly presented to your customers. This guide will walk you through the steps to add a discount percentage column, display amounts excluding GST, and show specific totals such as Sub Total excluding GST, GST Amount, credits/payments deducted, and Amount Due including GST.
Access Invoice Template Settings:
Add a Discount Percentage Column:
<th>Discount %</th>
<td>{{ line_item.discount_percentage }}</td>
Display Amounts Excluding GST:
<td>{{ line_item.amount_excluding_gst }}</td>
Show Specific Totals:
<tr>
<td>Sub Total (Excl. GST)</td>
<td>{{ invoice.sub_total_excluding_gst }}</td>
</tr>
<tr>
<td>GST Amount</td>
<td>{{ invoice.gst_amount }}</td>
</tr>
<tr>
<td>Amount Due (Incl. GST)</td>
<td>{{ invoice.amount_due_including_gst }}</td>
</tr>
Preview and Save Changes:
Was this article helpful?