-
Notifications
You must be signed in to change notification settings - Fork 1
/
__manifest__.py
executable file
·163 lines (128 loc) · 6.32 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# -*- coding: utf-8 -*-
{
'name': "IMS: Institute Management System",
'summary': """
Provides a free, open-source, comprehensive and intuitive environment in order to manage an educational center.
""",
'description': """
The IMS's main objective is to provide a free, open-source, comprehensive and intuitive environment in order to manage an educational center. To achieve that, a group of bold teachers from 'Institut Puig Castellar' (Santa Coloma de Gramenet, Barcelona, Spain) is developing this Odoo module as part of the Quality and Continuous Improvement Project (Q&CIP or PQiMC in our local language: Catalan).
""",
'author': "El Puig",
'website': "https://github.com/ElPuig/IMS",
#icon authory: thanks to Memed_Nurrohmad (https://pixabay.com/es/vectors/sombrero-graduaci%C3%B3n-gorra-educaci%C3%B3n-1674894/)
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/16.0/odoo/addons/base/data/ir_module_category_data.xml
# for the full list
'category': 'Educational',
'version': '0.15.1',
# any module necessary for this one to work correctly
# only 'base_setup', 'hr', 'auth_oauth' are needed. The rest are installed sometimes (and sometimes nor) and I don't know why, so I decided to install all manyally in order to avoid errors.
'depends': ['base_setup', 'hr', 'hr_org_chart', 'auth_oauth', 'contacts', 'project', 'mass_mailing', 'survey'],
# always loaded
'data': [
'security/groups.xml',
'security/ir.model.access.csv',
'views/menu.xml',
'views/settings/form.xml',
'views/settings/menu.xml',
'views/community/menu.xml',
'views/community/configuration/menu.xml',
'views/community/employee/menu.xml',
'views/community/employee/kanban.xml',
'views/community/employee/list.xml',
'views/community/employee/form.xml',
'views/community/workgroup/list.xml',
'views/community/workgroup/form.xml',
'views/community/workgroup/menu.xml',
'views/community/contact/list.xml',
'views/community/contact/form.xml',
'views/community/contact/search.xml',
'views/community/contact/kanban.xml',
'views/community/contact/menu.xml',
'views/community/group/list.xml',
'views/community/group/form.xml',
'views/community/group/menu.xml',
'views/community/job/list.xml',
'views/community/job/form.xml',
'views/community/job/menu.xml',
'views/community/role/list.xml',
'views/community/role/form.xml',
'views/community/role/menu.xml',
'views/community/department/menu.xml',
'views/community/worklocation/menu.xml',
'views/community/employmenttypes/menu.xml',
'views/community/subject/list.xml',
'views/community/subject/form.xml',
'views/community/subject/menu.xml',
'views/community/study/list.xml',
'views/community/study/form.xml',
'views/community/study/menu.xml',
'views/community/level/list.xml',
'views/community/level/form.xml',
'views/community/level/menu.xml',
'views/community/space/menu.xml',
'views/community/space/list.xml',
'views/community/space/form.xml',
'views/community/space/search.xml',
'views/community/space_type/list.xml',
'views/community/space_type/form.xml',
'views/community/space_type/menu.xml',
# 'views/community/tracking/list.xml',
# 'views/community/tracking/form.xml',
# 'views/community/tracking/menu.xml',
'views/attendance/menu.xml',
'views/attendance/configuration/menu.xml',
'views/attendance/attendance_template/menu.xml',
'views/attendance/attendance_template/list.xml',
'views/attendance/attendance_template/form.xml',
'views/attendance/attendance_session/list.xml',
'views/attendance/attendance_session/form.xml',
'views/attendance/attendance_session/calendar.xml',
'views/attendance/attendance_session/menu.xml',
'views/attendance/attendance_status/list.xml',
'views/attendance/attendance_status/form.xml',
'views/attendance/attendance_status/menu.xml',
'views/documentation/menu.xml',
'views/documentation/minutes/menu.xml',
'views/documentation/minutes/list.xml',
'views/documentation/minutes/form.xml',
],
'license': 'AGPL-3',
'installable': True,
'application': True,
# only loaded in demonstration mode (only loaded when installed, ignored when updated)
'demo': [
# this order is needed due dependencies
'demo/curriculum/level.xml',
'demo/curriculum/study.xml',
'demo/curriculum/subject.xml',
'demo/facilities/space_type.xml',
'demo/facilities/space.xml',
'demo/contacts/group.xml',
'demo/contacts/company.xml',
'demo/employees/teaching.xml',
'demo/employees/job.xml',
'demo/employees/department.xml',
'demo/employees/work_location.xml',
'demo/employees/teacher.xml',
'demo/employees/pas.xml',
'demo/employees/role.xml',
'demo/employees/employee.xml',
'demo/employees/workgroup.xml',
'demo/contacts/student.xml',
'demo/contacts/provider.xml',
'demo/contacts/enrollment.xml',
'demo/attendance/attendance_template.xml',
'demo/attendance/attendance_schedule.xml',
'demo/attendance/attendance_session.xml',
'demo/attendance/attendance_status.xml',
],
'assets': {
'web.assets_backend': [
'ims/static/src/fields/*',
],
'web.assets_common': [
'ims/static/src/js/**/*',
],
},
}