2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
{
|
|
|
|
'name': 'SMS gateway',
|
2018-01-16 12:08:17 +01:00
|
|
|
'author': 'Odoo S.A.',
|
2018-01-16 06:58:15 +01:00
|
|
|
'category': 'Tools',
|
|
|
|
'summary': 'SMS Text Messaging',
|
|
|
|
'description': """
|
|
|
|
This module gives a framework for SMS text messaging
|
|
|
|
----------------------------------------------------
|
|
|
|
|
2018-04-05 10:25:40 +02:00
|
|
|
The service is provided by the In App Purchase Flectra platform.
|
2018-01-16 06:58:15 +01:00
|
|
|
""",
|
|
|
|
'depends': ['base', 'iap', 'mail'],
|
|
|
|
'data': [
|
|
|
|
'wizard/send_sms_views.xml',
|
|
|
|
'views/res_partner_views.xml',
|
2018-04-05 10:25:40 +02:00
|
|
|
'views/templates.xml',
|
|
|
|
],
|
|
|
|
'qweb': [
|
|
|
|
'static/src/xml/sms_widget.xml',
|
2018-01-16 06:58:15 +01:00
|
|
|
],
|
|
|
|
'installable': True,
|
|
|
|
'auto_install': True,
|
|
|
|
}
|