Is there an easy way to get the description type l...
# advancedpdf
c
Is there an easy way to get the description type line items on the PDF to not show anything in the amount column. Currently they all show $0
j
I use
<#if item.itemtype = "Description">
and have my description items formatted completely differently from other line items.
This is the full code I use:
Copy code
<#if item.itemtype = "Description">
  <td align="center" colspan="30" style="font-size: 7pt; padding: 5px; border-bottom: 1px solid #cccccc;"> <span style="text-align: center;">${item.description?replace('\\u0014|\\u0016|\\u0005', '', 'r')}</span> </td>
  <#else>