Netsuite Advanced PDF/HTML 代码 ifelse 语句
Netsuite Advanced PDF/HTML code ifelse statement
我需要一些帮助来正确格式化此代码以在 Netsuite 中实现项目;
<td><#if item.units != null>Units<#else>${tranline.units}</#if></td>
我希望 PDF 表格显示计量单位(即单位),如果没有为项目指定的特定 UOM,则说 UNITS 而不是什么都不显示。
你的例子在我看来是正确的,除了值在错误的地方。在我的 PDF 模板中,我也不使用 NULL。下面是我如何写一个类似的项目。
<#if item.units=="">
Units
<#else>
${tranline.units}
</#if>
我需要一些帮助来正确格式化此代码以在 Netsuite 中实现项目;
<td><#if item.units != null>Units<#else>${tranline.units}</#if></td>
我希望 PDF 表格显示计量单位(即单位),如果没有为项目指定的特定 UOM,则说 UNITS 而不是什么都不显示。
你的例子在我看来是正确的,除了值在错误的地方。在我的 PDF 模板中,我也不使用 NULL。下面是我如何写一个类似的项目。
<#if item.units=="">
Units
<#else>
${tranline.units}
</#if>