Is it possible to edit the Invoice Advanced PDF template for Finance Charge? When I print it, all Finance Charge info goes in one column
e
Ege Çolak
07/12/2021, 4:20 PM
Open your Advance PDF list and Find your print out, click edit and you can make changes on that
e
evelet
07/12/2021, 5:46 PM
Yes but how could I customize the Finance Charge details so that it is readable? It seems that all the information is going under the Description column
d
David B
07/12/2021, 9:26 PM
Might just be able to use #list and ?split to split them out and print how you want.
something like (untested):
Copy code
<#if item.type = "finchrg">
<#list item.description?split("#")>
<#-- each line here -->
</#list>
</#if>
David B
07/12/2021, 9:28 PM
or maybe split on new lines if possible.
I definitely wouldn't consider this basic template customising though