Hi all, can I put a converted currency amount on m...
# advancedpdf
z
Hi all, can I put a converted currency amount on my adv pdf template? For example, an invoice in pesos but I want to see the USD equivalent of the total
s
Something like this should work, assuming your base currency is US dollars:
<#if !record.isBaseCurrency>US Dollars: $${nsformat_number(record.exchangeRate * record.total)}</#if>
z
You're the best this worked thank you so much
👍 1