Removing Currency symbol

In Advanced PDF customization, we have certain amount fields in item table where currency symbol is not needed. But while fetching from the field the currency symbol will be along with it. To remove these currency symbol we have to use the following code:  ${record.amount?string[‘#,###,##0.00’]} <td align=”right” colspan=”3″ style=”height: 8px;border-left:.5px; border-left-color: #A1A0A0;”>${discount?string[‘#,###,##0.00’]}</td>

Printing Currency Symbol in Advanced PDF Template

In Advanced PDF customization, we have certain amount fields where we have to print the currency symbol along with it. But while fetching from the field the currency symbol will be missing. So we should give the currency symbols used by them as dynamically.We have to use the following code   <#assign currencySymbol = {“USD”:”$”, “EUR”:”€”,… Continue reading Printing Currency Symbol in Advanced PDF Template