Total Amount in Word

Inserts name of the currency after or before the total amount in words that appears in invoice

Example
Two Hundred Fifty BHD only

you will have to use a custom theme.

find code on line 69 of default plain theme <div>{{ field.text | newline_to_br }}</div> and replace it with the below code

<div>
{% if field.label == 'Total amount in words' %}BHD {{ field.text }}
{% else %}
{{ field.text | newline_to_br }}
{% endif %}
</div>

you can replace BHD in the above code with any currency of your choice.

3 Likes