Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Advanced PDF - amountpaid
I am trying to print out credits on an invoice but only if the value is greater than zero. I have tried
<#if record.amountpaid !=0>
and I get
The template cannot be saved due to the following errors: The only legal comparisons are between two numbers, two strings, or two dates.. Left hand operand is a com.netledger.templates.model.EmptyModel. Right hand operand is a freemarker.template.SimpleNumber.
And
<#if (record.amountpaid >0)>
Same result.
I think the problem is that paid/credits is sort of a roll up field? Anyone done this?
0