Does anyone know how to reference billing address ...
# advancedpdf
s
Does anyone know how to reference billing address 1, billing address 2 etc. in Freemarker from an Invoice record? I’m trying to do
${transaction.billaddr1}
, and I’m getting blanks. However, it does populate
${transaction.billcity}
c
did you try {record.billaddr1}?
s
wouldn’t the “record” be “transaction”?
n
In view mode if your invoice record, add this into the URL
&e=T&xml=T
. Check the id if it is existing.
s
I see <billaddr1> tag, but I’m not sure how I reference it in Freemarker.
n
${record.billaddr1} works on my end. Maybe you should check your Invoice record... check if the Billing Address has value on Address 1
s
I’ll check that again.
n
message has been deleted
s
I’m also using this in the context of Electronic Invoicing to generate an XML. Perhaps that’s why it won’t work. But I’ll check again. Thanks for sharing.