我们可以检查netsuite Advanced pdf中的项目子类型吗?

问题描述 投票:0回答:1

我在发票高级 pdf 模板上显示发票行项目。现在我为数量字段添加了条件,如果商品是非库存商品并且子类型是销售,我想显示数量。是否可以在不使用脚本的情况下检查项目子类型。在高级 pdf 模板中?

下面是我的物品表: <#if record.item?has_content>

<table class="itemtable" style="width: 100%; margin-top: 10px; margin-left: -5px;"> 
<!-- start items --><#list record.item as item><#if item_index==0>
<thead>
    <tr style="border-bottom:1px;">

    <th colspan="12">${item.description@label}</th>
      <th align="center" colspan="4">Number Of Users</th>
    <th colspan="2">${item.quantity@label}</th>
    <th align="right" colspan="4">Unit Price</th>
    <th align="right" colspan="4">${item.amount@label}</th>
    </tr>
</thead>
</#if><tr>

    <td colspan="12"><span class="itemname">${item.item}</span><br 
/>${item.description}</td>
  <td colspan="4">${item.quantity}</td>
  <td align="center" colspan="2" line-height="150%">${item.quantity}</td>
        <td align="right" colspan="4">${item.rate}</td>
    <td align="right" colspan="4">${item.amount}</td>
    </tr>
    </#list><!-- end items --></table>
pdf netsuite suitescript invoice
1个回答
0
投票

我们可以使用 item.itemsubtype 检查项目子类型

© www.soinside.com 2019 - 2024. All rights reserved.