计算 Netsuite Advanced PDF/HTML 模板中列值的总和?

Calculate the sum of column values in Netsuite Advanced PDF/HTML Templates?

我想在 Netsuite Advanced PDF/HTML 中对与相同税码对应的值进行小计。有可能吗?还有哪些其他方法可以实现我的目标?

这绝对有可能。 Netsuite 在幕后使用的模板引擎 Apache FreeMarker, and I would highly recommend looking at the documentation 那里有完整的详细信息。

这是一些基本的未经测试代码,您可以使用这些代码开始:

<#assign tax1subtotal = 0 >
<#assign tax2subtotal = 0 >
<#assign tax3subtotal = 0 >

<#list record.item as item>

  <#if item.taxcode == [taxcode1]>
     <#assign tax1subtotal = tax1subtotal + item.tax1amt>
  </#if>

  <#if item.taxcode == [taxcode2]>
    <#assign tax2subtotal = tax2subtotal + item.tax1amt>
  </#if>

  <#if item.taxcode == [taxcode3]>
    <#assign tax3subtotal = tax3subtotal + item.tax1amt>
  </#if>

</#list>

Tax Type 1 Subtotal: ${tax1subtotal}<br/>
Tax Type 2 Subtotal: ${tax2subtotal}<br/>
Tax Type 3 Subtotal: ${tax3subtotal}<br/>