Convert amount to words in a transaction record

Inorder to display the amount in words, the following code can be used in transaction records: <span style=”color: black; font-weight: bold;”>     ${record.currency} ${total_tax_amount?string(“c”)} Only </span> ${record.currency}: FreeMarker Expression: Dynamically retrieves the currency value from the record object. Example Output: USD or INR. ${total_tax_amount?string(“c”)}: FreeMarker Expression with Formatting: total_tax_amount: A variable that holds the… Continue reading Convert amount to words in a transaction record