forked from Mapan/odoo17e
26 lines
744 B
Python
26 lines
744 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Switzerland - Payroll with Accounting',
|
|
'icon': '/account/static/description/l10n.png',
|
|
'countries': ['ch'],
|
|
'author': 'Odoo',
|
|
'version': '1.0',
|
|
'category': 'Human Resources',
|
|
'description': """
|
|
Accounting Data for Switzerland Payroll Rules
|
|
=============================================
|
|
""",
|
|
'depends': ['hr_payroll_account', 'l10n_ch', 'l10n_ch_hr_payroll'],
|
|
'data': [
|
|
'data/account_chart_template_data.xml',
|
|
'views/hr_salary_rule_views.xml',
|
|
],
|
|
'demo': [
|
|
'data/l10n_ch_hr_payroll_account_demo.xml',
|
|
],
|
|
'license': 'OEEL-1',
|
|
'auto_install': True,
|
|
}
|