Hello, all. Printing Checks and trying to use log...
# advancedpdf
k
Hello, all. Printing Checks and trying to use logic to get the value of a joined record (entity record). Should this work? It doesn't seem to work the way I have it currently:
Copy code
<td vertical-align="middle" font-size="9pt">
	<#if check.custbody_printed_check_name != '' && check.custbody_printed_check_name != 'NULL'>
	     ${check.custbody_printed_check_name}
	<#else>
		 <#if check.entity.printoncheckas != ''>
			${check.entity.printoncheckas}
			<#elseif check.entity.companyname != ''>
			${check.entity.companyname}
			<#elseif check.entity != ''>${check.entity}
			<#elseif check.customer??>${check.customer.altname}
			<#else>${check.entity.firstname} ${check.entity.lastname}
		</#if> 

	</#if>
        </td>
#if check.entity.printoncheckas != ''
Is what I'm particularly interested in.. Thanks!