Show Amount Due for Each Invoice on a Customer Statement Using Advanced PDF/HTML Template

Scenario

The user needs to display the Amount Due for each Invoice on a Customer Statement printed with the Advanced PDF/HTML Template.

Solution

 

  1. Navigate to Customization > Forms > Advanced PDF/HTML Templates
  2. Preferred Custom Statement PDF/HTML Template: Click Edit
  3. Top right corner: Toggle Source Code 
  4. Look for the line of code that contains class=”itemtable”
  5. Within the <thead> tag, insert the following code:
  6. <th align=”right”>Amount Due</th>
  7. Within the <tr> tags, insert the following code:
  8. <td align=”right”>${line.amountremaining}</td>
  9. Click Save

		

Leave a comment

Your email address will not be published. Required fields are marked *