-
Notifications
You must be signed in to change notification settings - Fork 0
/
__openerp__.py
77 lines (77 loc) · 2.17 KB
/
__openerp__.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
'name': 'Universal Car Rental HR',
'version': '0.1',
'category': 'Human Resources',
'description': """
Custom implementation for PT. Universal Car Rental Jakarta
""",
'author': 'Christyan Juniady and Associates',
'maintainer': 'Christyan Juniady and Associates',
'website': 'http://www.chjs.biz',
'depends': [
"base","board","web","auth_crypt",
"chjs_custom_view","chjs_region","chjs_webservice_sync",
"hr","hr_recruitment","hr_contract","hr_attendance","hr_holidays","hr_expense","hr_payroll","fleet",
"hr_recruitment_period","hr_recruitment_requirement","hr_employee_family","hr_employee_health",
"document_approval",
"hr_termination","hr_overtime",
"restrict_unlimited_login_attempt","change_password_policy","chjs_mobile_web"
],
'sequence': 150,
'data': [
'security/universal_security.xml',
'security/ir.model.access.csv',
'security/ir_rule.xml',
'security/workflow.xml',
'data/hr.department.csv',
'data/hr.job.csv',
'data/hr_recruitment.xml',
'data/hr_employee.xml',
'data/hr_contract.xml',
'data/fleet.xml',
'data/hr_expense.xml',
'data/foms_order.xml',
'views/website_mobile_app_main_menu.xml',
'views/universal.xml',
'views/chjs_region.xml',
'views/hr_recruitment.xml',
'views/hr_employee.xml',
'views/hr_contract.xml',
'views/hr_attendance.xml',
'views/hr_holidays.xml',
'views/hr_expense.xml',
'views/hr_recruitment.xml',
'views/hr_recruitment_period.xml',
'views/hr_termination.xml',
'views/hr_payroll.xml',
'views/res_partner.xml',
'views/res_users.xml',
'views/res_config.xml',
'views/fleet.xml',
'views/foms_contract.xml',
'views/foms_order.xml',
'views/gps.xml',
'menu/universal_menu.xml',
'report/report_universal.xml',
'report/report_contract_driver.xml',
'report/report_contract_emp_trial.xml',
'report/report_contract_employee.xml',
'report/report_contract_attachment.xml',
'cron/hr_employee.xml',
'cron/hr_recruitment.xml',
'cron/hr_contract.xml',
'cron/foms_contract.xml',
'cron/foms_order.xml',
'cron/hr_holidays.xml',
'static/src/webclient_templates.xml',
],
'demo': [
],
'test': [
],
'installable': True,
'auto_install': False,
'qweb' : [
"static/src/xml/base.xml",
],
}