Odoo18-Base/extra-addons/marketing_automation_sms/__manifest__.py
hoangvv b8024171a2 - add modules(marketing automation + approvals + webstudio) \n
- create new module hr_promote (depend: hr,approvals) \n
- customize approval_type (WIP)
2025-01-17 07:32:51 +07:00

27 lines
850 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "SMS Marketing in Marketing Automation",
'version': "1.0",
'summary': "Integrate SMS Marketing in marketing campaigns",
'category': "Marketing/Marketing Automation",
'depends': [
'marketing_automation',
'mass_mailing_sms'
],
'data': [
'views/mailing_mailing_views.xml',
'views/mailing_trace_views.xml',
'views/marketing_activity_views.xml',
'views/marketing_campaign_views.xml',
'views/marketing_participant_views.xml',
'security/ir.model.access.csv',
'security/sms_security.xml',
'data/marketing_activity_data_templates_sms.xml',
],
'uninstall_hook': '_uninstall_hook',
'auto_install': True,
'license': 'OEEL-1',
}