Hi All - I'm trying to create an advanced PDF tem...
# advancedpdf
m
Hi All - I'm trying to create an advanced PDF template based on Bill Payment I want to display on it also some lines (line fields) from the Apply > Credits Applied subtab. That works fine for credit fields exposed on the subtab by using
<#list record.credit as credit>
, so I can use for example
${credit.refnum}
and that's perfect (see screenshot) The problem I'm facing is: I don't seem to be able to add fields from the Bill Credit record itself that are not exposed on this subtab. For example, there's a body field
usertotal
on the Bill Credit that I can't reference. Any idea how I can source the value of this Bill Credit body field that is not exposed on the Apply > Credits Applied subtab? Thanks!
e
does
record.usertotal
work?
k
I’m currently working on the same issue, but with customer payments. There is an invoice body field I need to display on the invoice line on the pdf, and I can bring it in to the transaction view, but I can’t get it to display on the PDF. Did you make any progress with this?
s
try
credit.internalid.usertotal
- this technically should work