# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # Copyright (C) 2011-2012 Serpent Consulting Services () # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program 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 Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # ############################################################################## { "name" : "school", "version" : "1.1", "author" : "Serpent Consulting Services", "website" : "http://www.serpentcs.com", "category": "School Management", "complexity": "easy", "description": """A module to School Management. A Module support the following functionalities: 1. Admission Procedure 2. Student Information 3. Parent Information 4. Teacher Information 5. School Information 6. Standard, Medium and Division Information 7. Subject Information """, "depends" : ["base", "hr"], "init_xml" : [], "update_xml" : [ "wizard/wiz_send_email_view.xml", "security/school_security.xml", "security/ir.model.access.csv", "school_view.xml", "admission_workflow.xml", "student_sequence.xml", "wizard/assign_roll_no_wizard.xml", "wizard/move_standards_view.xml", "indentity_card_report.xml", ], 'demo_xml': [ "demo/school_demo.xml", ], 'test': [ 'test/school_test.yml', 'test/assign_roll_no_test.yml', ], "installable": True, "auto_install": False, "application": True, } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: