diff --git a/integration_whatsapp_chat_live/README.rst b/integration_whatsapp_chat_live/README.rst new file mode 100644 index 000000000..3333b9bcc --- /dev/null +++ b/integration_whatsapp_chat_live/README.rst @@ -0,0 +1,43 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Whatsapp Live Chat Odoo +======================= +* In this module customer can send message to the partner through whatsapp web +while ordering a product + +Configuration +============= +* No additional configurations needed + +License +======= +AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPLv3) +(http://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* 'Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: (V14) Mohammed Irfan T, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/integration_whatsapp_chat_live/__init__.py b/integration_whatsapp_chat_live/__init__.py new file mode 100644 index 000000000..a48595fb1 --- /dev/null +++ b/integration_whatsapp_chat_live/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Mohammed Irfan T(odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/integration_whatsapp_chat_live/__manifest__.py b/integration_whatsapp_chat_live/__manifest__.py new file mode 100644 index 000000000..0b48f6118 --- /dev/null +++ b/integration_whatsapp_chat_live/__manifest__.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Mohammed Irfan T(odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Whatsapp Live Chat Odoo', + 'version': '14.0.1.0.0', + 'category': 'Extra Tools,Website,eCommerce', + 'summary': 'Send Message to partner via Whatsapp web', + 'description': """In this module customer can send message to the + partner through whatsapp web while ordering a product""", + 'author': 'Cybrosys Techno solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['website_sale'], + 'data': [ + 'views/assets.xml', + 'views/res_config_settings_views.xml', + 'views/whatsapp_order_templates.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/integration_whatsapp_chat_live/doc/RELEASE_NOTES.md b/integration_whatsapp_chat_live/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..e94ee7a03 --- /dev/null +++ b/integration_whatsapp_chat_live/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 24.10.2023 +#### Version 14.0.1.0.0 +#### ADD + +- Initial Commit for Whatsapp Live Chat Odoo diff --git a/integration_whatsapp_chat_live/models/__init__.py b/integration_whatsapp_chat_live/models/__init__.py new file mode 100644 index 000000000..8ce3765dc --- /dev/null +++ b/integration_whatsapp_chat_live/models/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Mohammed Irfan T(odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import res_config_settings diff --git a/integration_whatsapp_chat_live/models/res_config_settings.py b/integration_whatsapp_chat_live/models/res_config_settings.py new file mode 100644 index 000000000..619aad976 --- /dev/null +++ b/integration_whatsapp_chat_live/models/res_config_settings.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Mohammed Irfan T(odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, fields, models + + +class ResConfigSettings(models.TransientModel): + """This class used to inherit Res Configuration for adding extra fields""" + _inherit = 'res.config.settings' + + mobile_phone_no = fields.Char(string='Mobile Phone No:', + help='User Can add mobile number', + config_parameter='integration_whatsapp_chat_live.' + 'mobile_phone_no') + custom_message = fields.Text(string="Custom Message", + help='User Can add custom message') + + @api.model + def get_values(self): + """Return values for the field custom messages""" + res = super(ResConfigSettings, self).get_values() + params = self.env['ir.config_parameter'].sudo() + custom_message_id = params.get_param( + 'integration_whatsapp_chat_live.custom_message') + res.update(custom_message=custom_message_id, ) + return res + + @api.model + def set_values(self): + """Set values for the field custom messages""" + super(ResConfigSettings, self).set_values() + self.env['ir.config_parameter'].sudo().set_param( + "integration_whatsapp_chat_live.custom_message", + self.custom_message) diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/check.png b/integration_whatsapp_chat_live/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/check.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/chevron.png b/integration_whatsapp_chat_live/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/chevron.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/cogs.png b/integration_whatsapp_chat_live/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/cogs.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/consultation.png b/integration_whatsapp_chat_live/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/consultation.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/ecom-black.png b/integration_whatsapp_chat_live/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/ecom-black.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/education-black.png b/integration_whatsapp_chat_live/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/education-black.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/hotel-black.png b/integration_whatsapp_chat_live/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/hotel-black.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/license.png b/integration_whatsapp_chat_live/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/license.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/lifebuoy.png b/integration_whatsapp_chat_live/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/lifebuoy.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/logo.png b/integration_whatsapp_chat_live/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/logo.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/manufacturing-black.png b/integration_whatsapp_chat_live/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/manufacturing-black.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/pos-black.png b/integration_whatsapp_chat_live/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/pos-black.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/puzzle.png b/integration_whatsapp_chat_live/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/puzzle.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/restaurant-black.png b/integration_whatsapp_chat_live/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/restaurant-black.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/service-black.png b/integration_whatsapp_chat_live/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/service-black.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/trading-black.png b/integration_whatsapp_chat_live/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/trading-black.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/training.png b/integration_whatsapp_chat_live/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/training.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/update.png b/integration_whatsapp_chat_live/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/update.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/user.png b/integration_whatsapp_chat_live/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/user.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/icons/wrench.png b/integration_whatsapp_chat_live/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/wrench.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/gantt_image.png b/integration_whatsapp_chat_live/static/description/assets/modules/gantt_image.png new file mode 100644 index 000000000..4810fc34d Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/gantt_image.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/hide_menu_image.png b/integration_whatsapp_chat_live/static/description/assets/modules/hide_menu_image.png new file mode 100644 index 000000000..be440eb23 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/hide_menu_image.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/list_view_image.png b/integration_whatsapp_chat_live/static/description/assets/modules/list_view_image.png new file mode 100644 index 000000000..510d36ae9 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/list_view_image.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/product_attachment.png b/integration_whatsapp_chat_live/static/description/assets/modules/product_attachment.png new file mode 100644 index 000000000..5019050da Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/product_attachment.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/product_publish.png b/integration_whatsapp_chat_live/static/description/assets/modules/product_publish.png new file mode 100644 index 000000000..9a916234a Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/product_publish.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/return_management.png b/integration_whatsapp_chat_live/static/description/assets/modules/return_management.png new file mode 100644 index 000000000..27eaa610d Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/return_management.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/screenshots/auto_msg.png b/integration_whatsapp_chat_live/static/description/assets/screenshots/auto_msg.png new file mode 100644 index 000000000..a0bd86293 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/screenshots/auto_msg.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/screenshots/countinue.png b/integration_whatsapp_chat_live/static/description/assets/screenshots/countinue.png new file mode 100644 index 000000000..4d2b21f99 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/screenshots/countinue.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/screenshots/hero.gif b/integration_whatsapp_chat_live/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..86a8733a8 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/screenshots/hero.gif differ diff --git a/integration_whatsapp_chat_live/static/description/assets/screenshots/scan_web.png b/integration_whatsapp_chat_live/static/description/assets/screenshots/scan_web.png new file mode 100644 index 000000000..cadd0b908 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/screenshots/scan_web.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/screenshots/send_msg.png b/integration_whatsapp_chat_live/static/description/assets/screenshots/send_msg.png new file mode 100644 index 000000000..3345d8b55 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/screenshots/send_msg.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/screenshots/settings.png b/integration_whatsapp_chat_live/static/description/assets/screenshots/settings.png new file mode 100644 index 000000000..130f8ab11 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/screenshots/settings.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/screenshots/use_web.png b/integration_whatsapp_chat_live/static/description/assets/screenshots/use_web.png new file mode 100644 index 000000000..9fbfcdd9a Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/screenshots/use_web.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/screenshots/wp_click.png b/integration_whatsapp_chat_live/static/description/assets/screenshots/wp_click.png new file mode 100644 index 000000000..7c8902732 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/screenshots/wp_click.png differ diff --git a/integration_whatsapp_chat_live/static/description/banner.png b/integration_whatsapp_chat_live/static/description/banner.png new file mode 100644 index 000000000..2bb8c6b3a Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/banner.png differ diff --git a/integration_whatsapp_chat_live/static/description/icon.png b/integration_whatsapp_chat_live/static/description/icon.png new file mode 100644 index 000000000..9422f68c7 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/icon.png differ diff --git a/integration_whatsapp_chat_live/static/description/index.html b/integration_whatsapp_chat_live/static/description/index.html new file mode 100644 index 000000000..dbcc07b8e --- /dev/null +++ b/integration_whatsapp_chat_live/static/description/index.html @@ -0,0 +1,650 @@ + + + + + +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+
+
+

+ Whatsapp Live Chat Odoo

+

+ Send Message to partner via WhatsApp web +

+ +
+
+ +
+
+

+ Overview +

+
+
+

+ This module adds a WhatsApp button on the website of the + selected + product in which the customers can communicate with the website + through + WhatsApp about each product. +

+
+
+
+
+

+ Features +

+
+
+
+ +
+
+

+ Community Support

+

+ Available in Odoo 14.0 Community .

+
+
+
+
+ +
+
+

+ Enterprise Support

+

+ Available in Odoo 14.0 Enterprise .

+
+
+
+
+ +
+
+

+ Odoo.sh Support

+

+ Available in Odoo 14.0 Odoo.sh .

+
+
+
+
+ +
+
+

+ While choosing a product from the Website, it is simple to + interact via WhatsApp.

+
+
+
+
+
+

+ Screenshots +

+
+
+

+ Setting Mobile phone numbers and adding any custom messages

+

+ Go to Website Settings > There we can give the mobile phone number, add any custom messages and save.

+ +
+
+
+

+ WhatsApp clickable button

+

+ WhatsApp web can be accessed by clicking that button. +

+ +
+
+

+ Scan web

+

+ Scan the web for whatsApp connections. +

+ +
+
+

+ Continue Chat

+

+ Click Continue Chat to be redirected to the corresponding chat form for the mobile phone specified in the website settings. + We can also see that personalised message as well as the product we selected. +

+ +
+
+

+ Chats on the Whatsapp mobile app

+

+ You can Share the chats to this contact. +

+ +
+
+

+ Chats on the Whatsapp mobile app

+

+ You can see the chats on the Whatsapp mobile app . +

+ +
+ +
+
+

Suggested Products

+
+ + +
+
+ + +
+
+
+

Our Services

+
+
+
+
+ +
+
+ Odoo + Customization
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Support
+
+
+
+ +
+
+ Hire + Odoo + Developer
+
+
+
+ +
+
+ Odoo + Integration
+
+
+
+ +
+
+ Odoo + Migration
+
+
+
+ +
+
+ Odoo + Consultancy
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + +
+
+
+

Our Industries

+
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + + +
+
+
+

Need Help?

+
+
+
+ +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ +
+ + diff --git a/integration_whatsapp_chat_live/static/src/css/wp_msg.css b/integration_whatsapp_chat_live/static/src/css/wp_msg.css new file mode 100644 index 000000000..580096d9e --- /dev/null +++ b/integration_whatsapp_chat_live/static/src/css/wp_msg.css @@ -0,0 +1,8 @@ +#whatsapp_1{ + font-size:24px; + font-weight:600; + } + +.o_form_label.col-lg-3.o_light_label { + font-weight: bold; +} \ No newline at end of file diff --git a/integration_whatsapp_chat_live/views/assets.xml b/integration_whatsapp_chat_live/views/assets.xml new file mode 100644 index 000000000..6d4d3865e --- /dev/null +++ b/integration_whatsapp_chat_live/views/assets.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/integration_whatsapp_chat_live/views/res_config_settings_views.xml b/integration_whatsapp_chat_live/views/res_config_settings_views.xml new file mode 100644 index 000000000..41156e5b4 --- /dev/null +++ b/integration_whatsapp_chat_live/views/res_config_settings_views.xml @@ -0,0 +1,48 @@ + + + + + + res.config.settings.view.form.inherit.integration.whatsapp.chat.live + + res.config.settings + + + + > +
+

Whatsapp Live Order

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + diff --git a/integration_whatsapp_chat_live/views/whatsapp_order_templates.xml b/integration_whatsapp_chat_live/views/whatsapp_order_templates.xml new file mode 100644 index 000000000..80a1138ef --- /dev/null +++ b/integration_whatsapp_chat_live/views/whatsapp_order_templates.xml @@ -0,0 +1,25 @@ + + + +