-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__manifest__.py
More file actions
91 lines (80 loc) · 2.97 KB
/
Copy path__manifest__.py
File metadata and controls
91 lines (80 loc) · 2.97 KB
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
# -*- coding: utf-8 -*-
{
'name': "Maya | Core",
'version': '17.0.2.0',
'summary': """
Módulo (Core) para la gestión interna del CEED (Ciclos Formativos)""",
'description': """
Módulo que simplifica y automatiza el trabajo de un centro de Ciclos Formativos a distancia.
Implementa la funcionalidad básica que será utilizada por otras extensiones como:
- Maya | Valid: gestión de las convalidaciones,
- Maya | Report: generación de informes
- Maya | Students: gestión de tareas relativas a estudiantes: anulaciones...
Este módulo permite entre otras cosas
- Control de profesores y sus roles
- Control de ciclos y módulos
- Generación automática de calendiario escolar
- Gestión de las aulas virtuales
- Gestión de las tareas automatizadas (CronJobs)
- Gestión de las notificaciones (ebnvio de mails) al profesorado
...
""",
'website': "https://portal.edu.gva.es/ceedcv/",
'author': 'Alfredo Oltra',
'maintainer': 'Alfredo Oltra <alfredo.ptcf@gmail.com>',
'company': '',
'category': 'Productivity',
'license': 'AGPL-3',
# precio del módulo
'price': 0,
# any module necessary for this one to work correctly
'depends': ['base', 'web', 'mail', 'mail_bot' ,'maya_report'],
# external dependencies that have to be installed. Can be python or bin dependencies
# Only checks whether the dependency is installed. Not install the dependency!!
'external_dependencies': {
'python': ['moodleteacher', 'toolz'],
},
'assets': {
'web.assets_backend': [
'maya_core/static/src/js/tab_switcher.js',
],
},
# always loaded
'data': [
# seguridad
'security/security_groups.xml',
'security/core_access.xml',
'security/cron_access.xml',
'security/ir.model.access.csv',
# vistas
'views/views.xml',
'views/views_notification_provider.xml',
'views/config_settings_view.xml',
'views/templates.xml',
# mails
'views/mail_templates/mail_notification_maya_users.xml',
'views/mail_templates/notification_provider_header.xml',
'views/mail_templates/notification_group_header.xml',
# datos de modelos
'data/config/config_data.xml',
'data/school.xml',
'data/departaments.xml',
'data/courses.xml',
'data/subjects/aig.xml',
'data/subjects/tic.xml',
'data/subjects/hit.xml',
'data/subjects/cim.xml',
'data/subjects/common.xml',
'data/subjects/optional.xml',
'data/roles/headquarters.xml',
'data/roles/tutors.xml',
'data/registered_cron_jobs.xml',
# reports
'reports/custom_footer.xml',
'reports/paper_format.xml',
'reports/school_calendar.xml',
],
'post_load': 'create_itaca_data_folder',
'installable': True,
'application': True,
}