"Else / If" Statement in Zoho CRM Inventory Template

"Else / If" Statement in Zoho CRM Inventory Template

Hello,

I would like to use the below "Else If" in my Inventory Templates, but it's not working correctly.

Essentially, if the field "Quote Payment Terms" is filled in, display that. If "Quote Payment Terms" is blank, display "Account Payment Terms" instead. Is this possible??

Code I'm using:

if <(${Quotes.Payment Terms}> != "empty" )
{
    info <${Quotes.Payment Terms}>;
}
else
{
    info <${Accounts.Payment Terms (days)}>;
}