~andorrax/school-base-openerp-module/xavi

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
# -*- coding: utf-8 -*-
##############################################################################
#
#    school module for OpenERP
#    Copyright (C) 2010 Tecnoba S.L. (http://www.tecnoba.com)
#       Pere Ramon Erro Mas <pereerro@tecnoba.com> All Rights Reserved.
#    Copyright (C) 2011 Zikzakmedia S.L. (http://www.zikzakmedia.com)
#       Jesús Martín Jiménez <jmargin@zikzakmedia.com> All Rights Reserved.
#
#    This file is a part of school module
#
#    school OpenERP module is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    school OpenERP module is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################

{
    'name' : 'School Management Extension',
    'version' : '0.0.1',
    'author' : 'Pere Ramon Erro Mas (Tecnoba)',
    'website' : 'http://www.tecnoba.com',
    'description' : """
Base module for extends school base module. It serves to manage participations in a school and their annotation and attendence.
""",
    "category" : "Generic Modules/Others",
    "depends": [
        'school_base',
    ],
    'update_xml' : [
        'school_extension_view.xml',
        'school_tutors_view.xml',
        'school_extension_wizards_view.xml',
        'school_cron.xml',
        'security/ir.model.access.csv',
        'wizard/school_reopen_seances.xml',        
        'wizard/school_change_classe_calendar_wizard.xml',
        'wizard/school_change_classe_dates_wizard.xml',
        'wizard/school_send_report_to_partner_wizard.xml',
        'wizard/school_create_annotations_wizard.xml',
        'wizard/school_check_contact_tutors.xml',   
        'wizard/school_generate_participations_from_students.xml',
        'wizard/school_create_session_view.xml',
    ],
    'demo_xml' : [
        'school_extension_demo.xml',
    ],
    'active' : False,
    'installable' : True,
}

# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: