我有一个用于自定义记录的高级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
肯定有一个值。
子自定义记录通过子选项卡包含在主自定义记录中,但它们具有多行。基本上,他们列出库存物品。