__manifest__.py 670 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': "Stock - SMS",
  5. 'summary': 'Send text messages when final stock move',
  6. 'description': "Send text messages when final stock move",
  7. 'category': 'Hidden',
  8. 'version': '1.0',
  9. 'depends': ['stock', 'sms'],
  10. 'data': [
  11. 'data/sms_data.xml',
  12. 'views/res_config_settings_views.xml',
  13. 'wizard/confirm_stock_sms_views.xml',
  14. 'security/ir.model.access.csv',
  15. 'security/sms_security.xml',
  16. ],
  17. 'auto_install': True,
  18. 'post_init_hook': '_assign_default_sms_template_picking_id',
  19. 'license': 'LGPL-3',
  20. }