diff --git a/integration_whatsapp_chat_live/README.rst b/integration_whatsapp_chat_live/README.rst new file mode 100644 index 000000000..5eb6a647b --- /dev/null +++ b/integration_whatsapp_chat_live/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/licence-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: (V16) Mohammed Irfan T ,contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://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 +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +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..fcb5d74a5 --- /dev/null +++ b/integration_whatsapp_chat_live/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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..d09e548d3 --- /dev/null +++ b/integration_whatsapp_chat_live/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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': '16.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/res_config_settings_views.xml', + 'views/whatsapp_order_templates.xml', + ], + 'assets': { + 'web.assets_backend': [ + 'integration_whatsapp_chat_live/static/src/css/wp_msg.css', + ] + }, + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': 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..cf2d6204f --- /dev/null +++ b/integration_whatsapp_chat_live/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 06.02.2024 +#### Version 16.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..45bd84cc0 --- /dev/null +++ b/integration_whatsapp_chat_live/models/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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..3cddb4570 --- /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) 2024-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().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 fields custom messages""" + super().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/cybrosys-logo.png b/integration_whatsapp_chat_live/static/description/assets/icons/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/icons/cybrosys-logo.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/animated_snippet.png b/integration_whatsapp_chat_live/static/description/assets/modules/animated_snippet.png new file mode 100644 index 000000000..7b32f3698 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/animated_snippet.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/helpdesk_dashboard.png b/integration_whatsapp_chat_live/static/description/assets/modules/helpdesk_dashboard.png new file mode 100644 index 000000000..fa478cd14 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/helpdesk_dashboard.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/multi_varient.png b/integration_whatsapp_chat_live/static/description/assets/modules/multi_varient.png new file mode 100644 index 000000000..f3068f161 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/multi_varient.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..7b32f3698 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/sighnup_approval.jpg b/integration_whatsapp_chat_live/static/description/assets/modules/sighnup_approval.jpg new file mode 100755 index 000000000..2b7aaa6d2 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/sighnup_approval.jpg differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/website_helpdesk.png b/integration_whatsapp_chat_live/static/description/assets/modules/website_helpdesk.png new file mode 100644 index 000000000..e90228872 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/website_helpdesk.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..7e9f08418 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..dd03467c8 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..234a4017f 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/hero.png b/integration_whatsapp_chat_live/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..e69de29bb 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..6c0acf0ec 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..4a728db48 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..72aefa040 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.jpg b/integration_whatsapp_chat_live/static/description/banner.jpg new file mode 100644 index 000000000..0e6c3e87e Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/banner.jpg 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..c225ed694 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..fd831515f --- /dev/null +++ b/integration_whatsapp_chat_live/static/description/index.html @@ -0,0 +1,675 @@ + + + + +
+
+ +
+
+ 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 16.0 Community .

+
+
+
+
+ +
+
+

+ Enterprise Support

+

+ Available in Odoo 16.0 Enterprise .

+
+
+
+
+ +
+
+

+ Odoo sh Support

+

+ Available in Odoo 16.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..6298ff48e --- /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; +} 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..8ad2865ab --- /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..e9e3d0c17 --- /dev/null +++ b/integration_whatsapp_chat_live/views/whatsapp_order_templates.xml @@ -0,0 +1,27 @@ + + + +