OCA/l10n-thailand · 18.0
Thai Localization - Base Utils Thai
l10n_th_base_utils
Thai Localization - Base Utils Thai
This module is a utility package for Thailand, providing helper functions commonly used in Thai-specific contexts.
It includes features such as:
- Conversion between Arabic and Thai numerals
- Thai month name and Buddhist calendar (Thai year) conversion
- Thai font support:
- Font
THBaijam - Font
THChakraPetch - Font
THCharmofAU - Font
THCharmonman - Font
THFahKwang - Font
THK2DJuly8 - Font
THKodchasal - Font
THKoHo - Font
THKrub - Font
THMaliGrade6 - Font
THNiramitAS - Font
THSarabun - Font
THSarabunNew - Font
THSrisakdi
- Font
Table of contents
Configuration
To configure the Thai font, go to Settings > General Settings > Business Documents > Configure Document Layout, then select the desired font and click Save.
Usage
This module provides a utility model thai.utils for Thai localization
features such as number and date formatting. You can either call the
methods directly via the environment, or inherit the abstract model in
your own modules.
Example
thai_utils = self.env["thai.utils"]
# Convert Arabic to Thai numerals
thai_number = thai_utils.to_thai_number("1234567890") # → ๑๒๓๔๕๖๗๘๙๐
# Convert Thai to Arabic numerals
arabic_number = thai_utils.to_arabic_number("๐๘๙") # → 089
# Get Thai full month name
month_name = thai_utils.thai_month_name(12) # → ธันวาคม
# Get Thai abbreviated month name
month_abbr = thai_utils.thai_month_name(12, short=True) # → ธ.ค.
# Format date to Thai date string
from datetime import date
formatted_date = thai_utils.format_thai_date(date(2025, 7, 2)) # → 2 กรกฎาคม 2568
formatted_date_short_month = thai_utils.format_thai_date(date(2025, 7, 2), month_format="short") # → 2 ก.ค. 2568
formatted_date_numeric_month = thai_utils.format_thai_date(date(2025, 7, 2), month_format="numeric", format_date="{day:02d}{month}{year}") # → 02072568
formatted_year_thai = thai_utils.format_thai_date(date(2025, 7, 2), format_date="{year}") # → 2568
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
Contributors
- Saran Lim. <<saranl@ecosoft.co.th>>
- Tharathip Chaweewongphan <<tharathipc@ecosoft.co.th>>
- Amin Cheloh <<amincheloh@gmail.com>>
Maintainers
This module is maintained by the OCA.
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:
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>.






