-
Notifications
You must be signed in to change notification settings - Fork 9
/
__manifest__.py
35 lines (34 loc) · 1.14 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- coding:utf-8 -*-
{
'name': 'Odoo 14 HR Payroll',
'category': 'Human Resources',
'version': '14.0.3.0.0',
'sequence': 1,
'author': 'Odoo Mates, Odoo SA',
'summary': 'Payroll For Odoo 14 Community Edition',
'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',
'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',
'data/hr_payroll_data.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',
],
'images': ['static/description/banner.png'],
'application': True,
}