Has anyone had trouble getting different subsidiar...
# advancedpdf
j
Has anyone had trouble getting different subsidiary legal names to show up when printing checks? I have a custom check template but it keeps printing the parent company name.
j
Should just be
${companyinformation.legalname}
I think it's working on our side (at least no one's complained about it not working in recent memory). You could always do something like
<#if check.subsidiary == "SubA">legalsubsidiaryAname <#elseif check.subsidiary == "SubB">legalsubsidiaryBname<#else>someerrormessagehere</#if>
if you're really running into issues.
j
Thanks! I will double check this.