summaryrefslogtreecommitdiff
path: root/addons/stock_sms/__manifest__.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/stock_sms/__manifest__.py')
-rw-r--r--addons/stock_sms/__manifest__.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/addons/stock_sms/__manifest__.py b/addons/stock_sms/__manifest__.py
new file mode 100644
index 00000000..a8922bb1
--- /dev/null
+++ b/addons/stock_sms/__manifest__.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+{
+ 'name': "Stock - SMS",
+ 'summary': 'Send text messages when final stock move',
+ 'description': "Send text messages when final stock move",
+ 'category': 'Hidden',
+ 'version': '1.0',
+ 'depends': ['stock', 'sms'],
+ 'data': [
+ 'data/sms_data.xml',
+ 'views/res_config_settings_views.xml',
+ 'wizard/confirm_stock_sms_views.xml',
+ 'security/ir.model.access.csv',
+ 'security/sms_security.xml',
+ ],
+ 'application': False,
+ 'auto_install': True,
+ 'post_init_hook': '_assign_default_sms_template_picking_id',
+ 'license': 'LGPL-3',
+}