Is it possible to edit the Invoice Advanced PDF te...
# advancedpdf
e
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
Open your Advance PDF list and Find your print out, click edit and you can make changes on that
e
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
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>
or maybe split on new lines if possible. I definitely wouldn't consider this basic template customising though
e
Thanks @David B I'll give that a try!