I’ve never seen that can you show a the code for y...
# advancedpdf
s
I’ve never seen that can you show a the code for your item tables? @Blake Enloe
b
Copy code
<#if record.item?has_content>
<table style="width: 100%; margin-top: 15px;">
  <!-- start items --><#list record.item as item><#if item_index==0>
  <thead>
    <tr>
      <th class="itemlist" align="center" style="width: 10%">Quantity</th>
      <th class="itemlist" style="width: 60%">${item.item@label}</th>
      <th class="itemlist" align="right" style="width: 10%">${item.rate@label}</th>
      <th class="itemlist" align="right" style="width: 10%">Tariff Fee</th>
      <th class="itemlist" align="right" style="width: 10%">${item.amount@label}</th>
    </tr>
  </thead>
  </#if>
  <tr>
    <td class="itemlist" align="center" line-height="150%" style="width: 10%">${item.quantity}</td>
    <td class="itemlist" style="width: 60%"><span style="font-weight: bold; line-height: 150%; color: #333333;">${item.item}</span><br />
      ${item.description}</td>
    <td class="itemlist" align="right" style="width: 10%">${item.rate}</td>
    <td class="itemlist" align="right" style="width: 10%">${item.custcol_tariff_fee}</td>
    <td class="itemlist" align="right" style="width: 10%">${item.amount}</td>
  </tr>
  </#list><!-- end items -->
</table>
<hr style="width: 100%; color: #d3d3d3; background-color: #d3d3d3; height: 1px;" />
</#if>
These two lines both display total amount:
<td class="itemlist" align="right" style="width: 10%">${item.rate}</td>
<td class="itemlist" align="right" style="width: 10%">${item.amount}</td>
s
Can you send me a screenshot of the item table from an estimate? You can DM it to me if you don’t want to post in chat.