__manifest__.py 630 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': "Project - SMS",
  5. 'summary': 'Send text messages when project/task stage move',
  6. 'description': "Send text messages when project/task stage move",
  7. 'category': 'Hidden',
  8. 'version': '1.0',
  9. 'depends': ['project', 'sms'],
  10. 'data': [
  11. 'views/project_stage_views.xml',
  12. 'views/project_task_type_views.xml',
  13. 'views/project_views.xml',
  14. 'security/ir.model.access.csv',
  15. 'security/project_sms_security.xml',
  16. ],
  17. 'auto_install': True,
  18. 'license': 'LGPL-3',
  19. }