forked from Mapan/odoo17e
24 lines
656 B
Python
24 lines
656 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'United States - Payroll with Accounting',
|
|
'countries': ['us'],
|
|
'author': 'Odoo',
|
|
'version': '1.0',
|
|
'category': 'Human Resources',
|
|
'description': """
|
|
Accounting Data for United States Payroll Rules
|
|
===============================================
|
|
""",
|
|
'depends': ['hr_payroll_account', 'l10n_us', 'l10n_us_hr_payroll'],
|
|
'data': [
|
|
'data/account_chart_template_data.xml',
|
|
],
|
|
'demo': [
|
|
'data/l10n_us_hr_payroll_account_demo.xml',
|
|
],
|
|
'license': 'OEEL-1',
|
|
'auto_install': True,
|
|
}
|