【发布时间】:2021-08-25 18:50:58
【问题描述】:
如果某项出现在发票中(高级 PDF、NetSuite)中,我正在尝试使该项目出现在列表的最后。
我正在考虑尝试排序并在项目名称中添加一些 ZZZ,但那是因为我对基本 HTML 之外的知识了解不多。
任何帮助将不胜感激。 下面是我正在处理的表格代码。
<table class="itemtable" style="width: 100%; margin-top: 10px;"><!-- start items --><#list record.item as item><#if item_index==0>
<thead>
<tr>
<th align="center" colspan="3">${item.quantity@label}</th>
<th colspan="12">${item.item@label}</th>
<th colspan="3">${item.options@label}</th>
<th align="right" colspan="4">${item.rate@label}</th>
<th align="right" colspan="4">${item.amount@label}</th>
</tr>
</thead>
</#if><tr>
<td align="center" colspan="3" line-height="150%">${item.quantity}</td>
<td colspan="12"><span class="itemname">${item.item}</span><br />${item.description}</td>
<td colspan="3">${item.options}</td>
<td align="right" colspan="4">${item.rate}</td>
<td align="right" colspan="4">${item.amount}</td>
</tr>
</#list>
我需要能够选择始终显示在底部的特定项目名称。
【问题讨论】:
标签: netsuite freemarker