summaryrefslogtreecommitdiff
path: root/addons/stock_sms/__manifest__.py
blob: a8922bb169658e2fa71a4091f0ba94ed146338dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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',
}