有没有办法在高级PDF模板报告中显示NetSuite子自定义记录

时间:2019-06-14 11:13:52

标签: netsuite

我有一个用于自定义记录的高级PDF HTML模板报告。我想在报告中显示与其关联的子自定义记录。

我尝试了下面的代码,但是空白。

<#if record.recmachcustrecord_convl_conv_record?has_content>

<table class="itemtable" style="width: 100%;"><#list record.recmachcustrecord_convl_conv_record as item><#if item_index==0>
<thead>
  <tr>
  <th colspan="4">Item Code</th>
  </tr>
</thead>
</#if><tr>
  <td align="right" colspan="2">${item.custrecord_convl_item}</td>
  </tr>
  </#list><!-- end recmachcustrecord_convl_conv_record --></table>
</#if>

recmachcustrecord_convl_conv_record列表是单击模板设计器上的+时显示的名称。我也尝试了此字符串的一部分。我还尝试了子自定义记录的ID。值custrecord_convl_item肯定有一个值。

子自定义记录通过子选项卡包含在主自定义记录中,但它们具有多行。基本上,他们列出库存物品。

0 个答案:

没有答案