- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-19-2016 04:54 AM
I have a currency field on a form called u_suspected_loss_local. The currency is stored in the local currency the user selects when completing the form. This is how it is shown on the form:
However, when the confirmation email notification is sent, the amount is converted to the default currency of GBP:
How can I prevent this from happening? I have tried setting the glide.i18n.single_currency property to true, however this doesn't work and prevent all currency fields from being edited to another currency.
Help is much appreciated as always.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-19-2016 05:06 AM
Use this in the mail script
template.print(current.price.getCurrencyDisplayValue());

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-19-2016 05:06 AM
Use this in the mail script
template.print(current.price.getCurrencyDisplayValue());
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-19-2016 05:21 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-19-2016 05:27 AM
You bet !!!