feat(odoo): create module structure and manifest
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
3
odoo_whatsapp_hub/__init__.py
Normal file
3
odoo_whatsapp_hub/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
from . import models
|
||||||
|
from . import controllers
|
||||||
|
from . import wizards
|
||||||
37
odoo_whatsapp_hub/__manifest__.py
Normal file
37
odoo_whatsapp_hub/__manifest__.py
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
'name': 'WhatsApp Hub',
|
||||||
|
'version': '17.0.1.0.0',
|
||||||
|
'category': 'Marketing',
|
||||||
|
'summary': 'Integración WhatsApp Central para envío y recepción de mensajes',
|
||||||
|
'description': '''
|
||||||
|
Módulo de integración con WhatsApp Central:
|
||||||
|
- Enviar mensajes WhatsApp desde cualquier registro
|
||||||
|
- Ver historial de conversaciones en contactos
|
||||||
|
- Widget de chat en tiempo real
|
||||||
|
- Envío masivo a múltiples contactos
|
||||||
|
- Automatizaciones basadas en eventos
|
||||||
|
''',
|
||||||
|
'author': 'Consultoria AS',
|
||||||
|
'website': 'https://consultoria-as.com',
|
||||||
|
'license': 'LGPL-3',
|
||||||
|
'depends': ['base', 'contacts', 'mail'],
|
||||||
|
'data': [
|
||||||
|
'security/ir.model.access.csv',
|
||||||
|
'data/whatsapp_data.xml',
|
||||||
|
'views/whatsapp_menu.xml',
|
||||||
|
'views/whatsapp_account_views.xml',
|
||||||
|
'views/whatsapp_conversation_views.xml',
|
||||||
|
'views/res_partner_views.xml',
|
||||||
|
'wizards/send_whatsapp_wizard.xml',
|
||||||
|
],
|
||||||
|
'assets': {
|
||||||
|
'web.assets_backend': [
|
||||||
|
'odoo_whatsapp_hub/static/src/css/whatsapp.css',
|
||||||
|
'odoo_whatsapp_hub/static/src/js/chat_widget.js',
|
||||||
|
'odoo_whatsapp_hub/static/src/xml/chat_widget.xml',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
'installable': True,
|
||||||
|
'application': True,
|
||||||
|
'auto_install': False,
|
||||||
|
}
|
||||||
1
odoo_whatsapp_hub/controllers/__init__.py
Normal file
1
odoo_whatsapp_hub/controllers/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
from . import webhook
|
||||||
4
odoo_whatsapp_hub/models/__init__.py
Normal file
4
odoo_whatsapp_hub/models/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
from . import res_partner
|
||||||
|
from . import whatsapp_account
|
||||||
|
from . import whatsapp_conversation
|
||||||
|
from . import whatsapp_message
|
||||||
2
odoo_whatsapp_hub/wizards/__init__.py
Normal file
2
odoo_whatsapp_hub/wizards/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
from . import send_whatsapp
|
||||||
|
from . import mass_whatsapp
|
||||||
Reference in New Issue
Block a user