perhaps a newbie question. How does freemarker han...
# advancedpdf
e
perhaps a newbie question. How does freemarker handle number formatting? I have a Quantity column in a table defined like so:
Copy code
<th align="center" colspan="4">Qty.</th>
...
<td align="center" colspan="4">${record.subtotal / record.custbody_dhc_so_contract_total}</td>
In the case where
record.subtotal
is less than the custom field value, the template just rounds down to `0`; how do I get it to show the decimal places?