diff options
Diffstat (limited to 'om_hr_payroll/__manifest__.py')
| -rw-r--r-- | om_hr_payroll/__manifest__.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/om_hr_payroll/__manifest__.py b/om_hr_payroll/__manifest__.py new file mode 100644 index 0000000..7278c72 --- /dev/null +++ b/om_hr_payroll/__manifest__.py @@ -0,0 +1,38 @@ +# -*- coding:utf-8 -*- + +{ + 'name': 'Odoo 14 HR Payroll', + 'category': 'Generic Modules/Human Resources', + 'version': '14.0.7.1.0', + 'sequence': 1, + 'author': 'Odoo Mates, Odoo SA', + 'summary': 'Payroll For Odoo 14 Community Edition', + 'live_test_url': 'https://www.youtube.com/watch?v=0kaHMTtn7oY', + 'description': "", + 'website': 'https://www.odoomates.tech', + 'depends': [ + 'hr_contract', + 'hr_holidays', + ], + 'data': [ + 'security/hr_payroll_security.xml', + 'security/ir.model.access.csv', + 'data/hr_payroll_sequence.xml', + 'data/hr_payroll_category.xml', + 'data/hr_payroll_data.xml', + 'wizard/hr_payroll_payslips_by_employees_views.xml', + 'views/hr_contract_views.xml', + 'views/hr_salary_rule_views.xml', + 'views/hr_payslip_views.xml', + 'views/hr_employee_views.xml', + 'views/hr_payroll_report.xml', + 'wizard/hr_payroll_contribution_register_report_views.xml', + 'views/res_config_settings_views.xml', + 'views/report_contribution_register_templates.xml', + 'views/report_payslip_templates.xml', + 'views/report_payslip_details_templates.xml', + 'data/mail_template.xml', + ], + 'images': ['static/description/banner.png'], + 'application': True, +} |
