summaryrefslogtreecommitdiff
path: root/om_hr_payroll/__manifest__.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 17:14:58 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 17:14:58 +0700
commit1ca3b3df3421961caec3b747a364071c80f5c7da (patch)
tree6778a1f0f3f9b4c6e26d6d87ccde16e24da6c9d6 /om_hr_payroll/__manifest__.py
parentb57188be371d36d96caac4b8d65a40745c0e972c (diff)
initial commit
Diffstat (limited to 'om_hr_payroll/__manifest__.py')
-rw-r--r--om_hr_payroll/__manifest__.py38
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,
+}