forked from Mapan/odoo17e
31 lines
809 B
Python
31 lines
809 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Australia - Payroll with Accounting',
|
|
'countries': ['au'],
|
|
'category': 'Human Resources',
|
|
'depends': [
|
|
'l10n_au_hr_payroll',
|
|
'hr_payroll_account',
|
|
'l10n_au',
|
|
"l10n_au_aba"
|
|
],
|
|
'description': """
|
|
Accounting Data for Australian Payroll Rules.
|
|
=============================================
|
|
""",
|
|
|
|
'auto_install': True,
|
|
'data': [
|
|
"data/account_chart_template_data.xml",
|
|
"data/ir_sequence_data.xml",
|
|
"views/l10n_au_super_stream_views.xml",
|
|
"security/ir.model.access.csv",
|
|
"wizard/hr_payroll_aba_wizard_views.xml",
|
|
],
|
|
'demo': [
|
|
"data/l10n_au_hr_payroll_account_demo.xml",
|
|
],
|
|
'license': 'OEEL-1',
|
|
}
|