我在NetSuite中创建了一个发票。我还接受了一笔付款,并在我创建的发票上申请了信用证。是否有人知道如何打印相关记录,这是一个“列表”类型,包含付款/信贷信息?
以下是发票的xml部分:

<machine name="links" type="list" fields="id,trandate,linkurl,type,tranid,status,total">
<line>
<id>167209</id>
<linkurl>/app/accounting/transactions/custpymt.nl?whence=</linkurl>
<status>Deposited</status>
<total>100.00</total>
<trandate>9/18/2017</trandate>
<tranid>PYMT0716</tranid>
<type>Payment</type>
</line>
<line>
<id>167410</id>
<linkurl>/app/accounting/transactions/custcred.nl?whence=</linkurl>
<status>Fully Applied</status>
<total>560.00</total>
<trandate>9/19/2017</trandate>
<tranid>CM0985</tranid>
<type>Credit Memo</type>
</line>
<line>
<id>167410</id>
<total>660.00</total>
<type>Total</type>
</line>
</machine>

以下是我在高级PDF模板中尝试的操作:
<#if record.links?has_content>
      <table class="itemtable" style="width: 100%;">
        <#list record.links as lineitem>
          <#if lineitem_index==0>
            <thead>
              <tr>
                <th align="center">type</th>
                <th align="center">total</th>
              </tr>
            </thead>
          </#if>
          <tr>
            <td align="center" class="itemInfo">${lineitem.type}</td>
            <td align="center" class="itemInfo">${lineitem.total}</td>
          </tr>
        </#list>
      </table>
  </#if>

最佳答案

我还没找到办法。我想这是办不到的。

关于html - 在NetSuite中,如何在高级PDF/HTML模板中打印相关记录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46306951/

10-10 19:06