How would I go about getting rid of the currency symbol that NetSuite outputs on the printed form?
<td align="right" colspan="4">${item.rate}</td>
Instead of €3.00, I want to output 3.00
I have found the answer...
${record.rate?html?replace("€","")}