forked from OpenG2P/openg2p-erp-community-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
31 lines (31 loc) · 1 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
'name': "SMS Framework",
'version': "1.0.0",
'author': "Sythil Tech",
'category': "Tools",
'summary':'Allows you to send and receive smses from multiple gateways',
'description':'Allows you to send and receive smses from multiple gateways',
'license':'LGPL-3',
'data': [
'data/ir.cron.xml',
'data/ir.model.access.csv',
'data/sms.gateway.csv',
'data/mail.message.subtype.csv',
'views/sms_views.xml',
'views/res_partner_views.xml',
'views/sms_message_views.xml',
'views/sms_template_views.xml',
'views/sms_account_views.xml',
'views/sms_number_views.xml',
'views/sms_compose_views.xml',
'views/ir_actions_server_views.xml',
# 'views/ir_actions_todo.xml', manual hack
'security/ir.model.access.csv',
],
'depends': ['mail','base_automation'],
'images':[
'static/description/3.jpg',
],
'qweb': ['static/src/xml/sms_compose.xml'],
'installable': True,
}