Metadata-Version: 2.1
Name: odoo-addon-l10n_th_amount_to_text
Version: 19.0.1.0.0.3
Requires-Dist: odoo==19.0.*
Summary: Convert Amount Text to Thai
Home-page: https://github.com/OCA/l10n-thailand
License: AGPL-3
Author: Ecosoft, Odoo Community Association (OCA)
Author-email: support@odoo-community.org
Classifier: Programming Language :: Python
Classifier: Framework :: Odoo
Classifier: Framework :: Odoo :: 19.0
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Development Status :: 4 - Beta
Description-Content-Type: text/x-rst

.. image:: https://odoo-community.org/readme-banner-image
   :target: https://odoo-community.org/get-involved?utm_source=readme
   :alt: Odoo Community Association

===============================================
Thai Localization - Convert Amount Text to Thai
===============================================

.. 
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   !! This file is generated by oca-gen-addon-readme !!
   !! changes will be overwritten.                   !!
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   !! source digest: sha256:deb7431e2ae90270907debc6fe0a4506b6efa1fae89ab47d0b24a24c111307a4
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
    :target: https://odoo-community.org/page/development-status
    :alt: Beta
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
    :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
    :alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--thailand-lightgray.png?logo=github
    :target: https://github.com/OCA/l10n-thailand/tree/19.0/l10n_th_amount_to_text
    :alt: OCA/l10n-thailand
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
    :target: https://translation.odoo-community.org/projects/l10n-thailand-19-0/l10n-thailand-19-0-l10n_th_amount_to_text
    :alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
    :target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-thailand&target_branch=19.0
    :alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

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:**

- Amount: 45.75 Baht

  - User Language: **Thai** → สี่สิบห้า Baht และ เจ็ดสิบห้า Satang
  - User Language: **English** → Forty-Five Baht and Seventy-Five Satang

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

**Table of contents**

.. contents::
   :local:

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:

.. code:: xml

   <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:**

- When ``lang=th_TH`` context is sent:

  - Currency: **THB** → ``สี่สิบห้าบาทเจ็ดสิบห้าสตางค์``
  - Currency: **EUR** → ``สี่สิบห้ายูโรเจ็ดสิบห้าเซนต์``
  - Currency: **USD** → ``สี่สิบห้าดอลลาร์เจ็ดสิบห้าเซนต์``

- When no context is sent: Odoo's default logic will handle the
  conversion.

**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 <https://github.com/OCA/l10n-thailand/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 <https://github.com/OCA/l10n-thailand/issues/new?body=module:%20l10n_th_amount_to_text%0Aversion:%2019.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
-------

* Ecosoft

Contributors
------------

- `Ecosoft <http://ecosoft.co.th>`__:

  - Saran Lim. <saranl@ecosoft.co.th>
  - Pimolnat Suntian <pimolnats@ecosoft.co.th>

- `Newlogic <https://newlogic.com/odoo>`__:

  - Baptiste <baptiste@newlogic.com>

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
   :alt: Odoo Community Association
   :target: https://odoo-community.org

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.

.. |maintainer-Saran440| image:: https://github.com/Saran440.png?size=40px
    :target: https://github.com/Saran440
    :alt: Saran440

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-Saran440| 

This module is part of the `OCA/l10n-thailand <https://github.com/OCA/l10n-thailand/tree/19.0/l10n_th_amount_to_text>`_ project on GitHub.

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