__manifest__.py 549 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Send SMS to Visitor',
  5. 'category': 'Website/Website',
  6. 'sequence': 54,
  7. 'summary': 'Allows to send sms to website visitor',
  8. 'version': '1.0',
  9. 'description': """Allows to send sms to website visitor if the visitor is linked to a partner.""",
  10. 'depends': ['website', 'sms'],
  11. 'data': [
  12. 'views/website_visitor_views.xml',
  13. ],
  14. 'installable': True,
  15. 'auto_install': True,
  16. 'license': 'LGPL-3',
  17. }