__openerp__.py.svn-base 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
  6. # Copyright (C) 2011-2012 Serpent Consulting Services (<http://www.serpentcs.com>)
  7. #
  8. # This program is free software: you can redistribute it and/or modify
  9. # it under the terms of the GNU Affero General Public License as
  10. # published by the Free Software Foundation, either version 3 of the
  11. # License, or (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU Affero General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Affero General Public License
  19. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. #
  21. ##############################################################################
  22. {
  23. "name" : "school",
  24. "version" : "1.1",
  25. "author" : "Serpent Consulting Services",
  26. "website" : "http://www.serpentcs.com",
  27. "category": "School Management",
  28. "complexity": "easy",
  29. "description": """A module to School Management.
  30. A Module support the following functionalities:
  31. 1. Admission Procedure
  32. 2. Student Information
  33. 3. Parent Information
  34. 4. Teacher Information
  35. 5. School Information
  36. 6. Standard, Medium and Division Information
  37. 7. Subject Information
  38. """,
  39. "depends" : ["base", "hr"],
  40. "init_xml" : [],
  41. "update_xml" : [
  42. "wizard/wiz_send_email_view.xml",
  43. "security/school_security.xml",
  44. "security/ir.model.access.csv",
  45. "school_view.xml",
  46. "admission_workflow.xml",
  47. "student_sequence.xml",
  48. "wizard/assign_roll_no_wizard.xml",
  49. "wizard/move_standards_view.xml",
  50. "indentity_card_report.xml",
  51. ],
  52. 'demo_xml': [
  53. "demo/school_demo.xml",
  54. ],
  55. 'test': [
  56. 'test/school_test.yml',
  57. 'test/assign_roll_no_test.yml',
  58. ],
  59. "installable": True,
  60. "auto_install": False,
  61. "application": True,
  62. }
  63. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: