29 lines
857 B
Python
29 lines
857 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'Thailand - Accounting',
|
|
'icon': '/account/static/description/l10n.png',
|
|
'countries': ['th'],
|
|
'version': '2.0',
|
|
'category': 'Accounting/Localizations/Account Charts',
|
|
'description': """
|
|
Chart of Accounts for Thailand.
|
|
===============================
|
|
|
|
Thai accounting chart and localization.
|
|
""",
|
|
'author': 'Almacom (http://almacom.co.th/)',
|
|
'website': 'https://www.odoo.com/documentation/17.0/applications/finance/fiscal_localizations/thailand.html',
|
|
'depends': [
|
|
'account_qr_code_emv',
|
|
],
|
|
'data': [
|
|
'data/account_tax_report_data.xml',
|
|
'views/report_invoice.xml',
|
|
],
|
|
'demo': [
|
|
'demo/demo_company.xml',
|
|
],
|
|
'post_init_hook': '_preserve_tag_on_taxes',
|
|
'license': 'LGPL-3',
|
|
}
|