Thai Localization - Convert Amount Text to Thai

Beta License: AGPL-3 OCA/l10n-thailand Translate me on Weblate Try me on Runboat

Odoo’s core functionality includes the amount_to_text function, which converts numerical amounts into text based on the user’s language settings or context. However, this conversion may produce incorrect results for Thai.

Example:

These results are inaccurate for Thai language formatting. This module provides a base for accurately converting numbers to Thai text.

Table of contents

Usage

The amount_to_text function in the res.currency model allows you to convert amounts into text. Below is an example of how to use it in a QWEB report:

Example Usage:

<t t-foreach="docs" t-as="o">
    <t t-set="currency" t-value="o.currency_id"/>

    <!-- Convert amount to Thai text -->
    <t t-out="currency.with_context({'lang': 'th_TH'}).amount_to_text(45.75)"/>

    <!-- Convert amount to text using Odoo's default behavior -->
    <t t-out="currency.amount_to_text(45.75)"/>
</t>

Results Based on Context:

Important Notes:

Ensure the Thai language (th_TH) is activated in your system before using the lang='th_TH' context.

Before sending the context with th_TH language, If it is not activated, combining the th_TH language context with non-THB currencies may result in errors.

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed feedback.

Do not contact contributors directly about support or help with technical issues.

Credits

Authors

  • Ecosoft

Maintainers

This module is maintained by the OCA.

Odoo Community Association

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

Current maintainer:

Saran440

This module is part of the OCA/l10n-thailand project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.