forked from Mapan/odoo17e
23 lines
630 B
Python
23 lines
630 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Hong Kong - Payroll with Accounting',
|
|
'countries': ['hk'],
|
|
'version': '1.0',
|
|
'category': 'Human Resources/Payroll',
|
|
'description': """
|
|
Accounting Data for Hong Kong Payroll Rules
|
|
===========================================
|
|
""",
|
|
'depends': ['hr_payroll_account', 'l10n_hk', 'l10n_hk_hr_payroll'],
|
|
'data': [
|
|
'data/account_chart_template_data.xml',
|
|
],
|
|
'demo': [
|
|
'data/l10n_hk_hr_payroll_account_demo.xml',
|
|
],
|
|
'license': 'OEEL-1',
|
|
'auto_install': True,
|
|
}
|