I have a scenario with a Multi-select field on an Invoice which includes 1 or more "Related Item Fulfillments".
With an Invoice advanced PDF, displaying the ${record.custbody_linkedif} will show something akin to:
**Related IF:** Item Fulfillment #DSO10044268 Item Fulfillment #DSO10044268-1
What i want to know, is there a way to access the data on the linked fulfillments within the Advanced PDF.
I have tried:
<#list record.custbody_linkedif as linkedIF>
<p>Related IF: ${linkedIF.tranid}</p>
</#list>
but that results in an error:
For "#list" list source: Expected a sequence or collection, but this has evaluated to a hash+string (wrapper: com.netledger.templates.model.StringModel):
==> record.linkedIF [in template "template" at line 253, column 14]
----
FTL stack trace ("~" means nesting-related):
- Failed at: #list record.linkedIF... [in template "template" at line 253, column 7]
----