39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'C2C Payroll',
|
|
'version': '17.0.1.0.0',
|
|
'category': 'Human Resources/Payroll',
|
|
'summary': 'Enterprise-like Payroll for Odoo Community',
|
|
'description': """
|
|
Complete payroll solution for Odoo 17 Community Edition.
|
|
Features:
|
|
- Salary Structures (Basic, HRA, Allowances)
|
|
- Automatic PF, ESI, Professional Tax deductions
|
|
- Payslip generation with auto-computed net salary
|
|
- Accounting journal entry on payslip confirmation
|
|
- QWeb PDF payslip report
|
|
- Multi-company support
|
|
""",
|
|
'author': 'C2C',
|
|
'website': '',
|
|
'license': 'LGPL-3',
|
|
'depends': [
|
|
'hr',
|
|
'hr_contract',
|
|
'account',
|
|
],
|
|
'data': [
|
|
'security/security.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/salary_structure_views.xml',
|
|
'views/payslip_views.xml',
|
|
'views/contract_views.xml',
|
|
'views/menu.xml',
|
|
'reports/payslip_report.xml',
|
|
'reports/payslip_report_template.xml',
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
'auto_install': False,
|
|
}
|