diff --git a/integration_whatsapp_chat_live/README.rst b/integration_whatsapp_chat_live/README.rst new file mode 100644 index 000000000..2ace5ff22 --- /dev/null +++ b/integration_whatsapp_chat_live/README.rst @@ -0,0 +1,45 @@ +.. 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 Chat Live Order +======================= +* Whatsapp Chat Live Order for Odoo 15 + +Installation +============ + - www.odoo.com/documentation/15.0/setup/install.html + - Install our custom addon + +License +======= +GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPLv3) +(http://www.gnu.org/licenses/agpl.html) + +Company +------- +* 'Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: v15.0 Saleekha, 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..48ed07dfb --- /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: 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..0180e59c9 --- /dev/null +++ b/integration_whatsapp_chat_live/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: 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 Chat Live Order', + 'version': '15.0.1.0.0', + 'summary': 'Send Message to partner via Whatsapp web', + 'description': 'Send Message to partner via Whatsapp web', + 'category': 'Extra Tools', + 'author': 'Cybrosys Techno solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': [ + 'base', 'contacts', 'stock', 'website', 'website_sale' + ], + 'data': [ + 'views/settings_whatsapp.xml', + 'views/views.xml', + ], + 'assets': { + 'web.assets_backend': [ + 'integration_whatsapp_chat_live/static/src/css/wp_msg.css', + ] + }, + + 'images': ['static/description/banner.png'], + 'installable': True, + 'application': False, + 'auto_install': False, + 'license': 'AGPL-3', +} 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..69f88277e --- /dev/null +++ b/integration_whatsapp_chat_live/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 18.2.2023 +#### Version 15.0.1.0.0 +##### ADD +- Initial Commit for Whatsapp Chat Live Order diff --git a/integration_whatsapp_chat_live/models/__init__.py b/integration_whatsapp_chat_live/models/__init__.py new file mode 100644 index 000000000..315b71334 --- /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: 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..74a7e8ba2 --- /dev/null +++ b/integration_whatsapp_chat_live/models/res_config_settings.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: 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(srting='Mobile Phone No:', + help='User Can add mobile number') + custom_message = fields.Text(string="Custom Message", + help='User Can add custom message') + + @api.model + def get_values(self): + """ + Return values for the fields mobile number and custom messages + """ + res = super(ResConfigSettings, self).get_values() + + params = self.env['ir.config_parameter'].sudo() + mobile_no_id = params.get_param( + 'integration_whatsapp_chat_live.mobile_phone_no') + custom_message_id = params.get_param( + 'integration_whatsapp_chat_live.custom_message') + res.update( + mobile_phone_no=mobile_no_id, + custom_message=custom_message_id, + ) + return res + + @api.model + def set_values(self): + """ + Set values for the fields mobile number and custom messages + """ + super(ResConfigSettings, self).set_values() + self.env['ir.config_parameter'].sudo().set_param( + "integration_whatsapp_chat_live.mobile_phone_no", + self.mobile_phone_no) + 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/dynamic_dashboard.png b/integration_whatsapp_chat_live/static/description/assets/modules/dynamic_dashboard.png new file mode 100644 index 000000000..3599974eb Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/dynamic_dashboard.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/library.png b/integration_whatsapp_chat_live/static/description/assets/modules/library.png new file mode 100644 index 000000000..4d28bb266 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/library.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/multi_product.png b/integration_whatsapp_chat_live/static/description/assets/modules/multi_product.png new file mode 100644 index 000000000..499b1a72f Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/multi_product.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/pos_order_type.png b/integration_whatsapp_chat_live/static/description/assets/modules/pos_order_type.png new file mode 100644 index 000000000..93c68c320 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/pos_order_type.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/send_wp_msg.png b/integration_whatsapp_chat_live/static/description/assets/modules/send_wp_msg.png new file mode 100644 index 000000000..f5174ab22 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/send_wp_msg.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/modules/woocomp_connector.png b/integration_whatsapp_chat_live/static/description/assets/modules/woocomp_connector.png new file mode 100644 index 000000000..4bec075eb Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/modules/woocomp_connector.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..a8cc4d553 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..b3d892f7a 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.png b/integration_whatsapp_chat_live/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..e36b44c05 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/screenshots/hero.png differ diff --git a/integration_whatsapp_chat_live/static/description/assets/screenshots/scan_web(1).png b/integration_whatsapp_chat_live/static/description/assets/screenshots/scan_web(1).png new file mode 100644 index 000000000..8ee2c0fc6 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/screenshots/scan_web(1).png 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..8ee2c0fc6 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..80b08e7af 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(1).png b/integration_whatsapp_chat_live/static/description/assets/screenshots/settings(1).png new file mode 100644 index 000000000..654431092 Binary files /dev/null and b/integration_whatsapp_chat_live/static/description/assets/screenshots/settings(1).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..654431092 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..6517356ef 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..3664700f5 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..feeb7cdbf 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..162974c0e --- /dev/null +++ b/integration_whatsapp_chat_live/static/description/index.html @@ -0,0 +1,685 @@ + + + + + + + +
+
+
+
+ +
+
+
+ Community +
+
+
+
+
+ +
+
+
+

+ WhatsApp Chat Live Order

+

+ 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 15.0 Community .

+
+
+
+
+ +
+
+

+ 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?

+
+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ +
+ + + + + + + \ No newline at end of file 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/settings_whatsapp.xml b/integration_whatsapp_chat_live/views/settings_whatsapp.xml new file mode 100644 index 000000000..7080973fa --- /dev/null +++ b/integration_whatsapp_chat_live/views/settings_whatsapp.xml @@ -0,0 +1,39 @@ + + + + + res.config.settings.view.form.inherit.base.setup + res.config.settings + + + + > +
+

Whatsapp Live Order

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + + diff --git a/integration_whatsapp_chat_live/views/views.xml b/integration_whatsapp_chat_live/views/views.xml new file mode 100644 index 000000000..dcf7ca34d --- /dev/null +++ b/integration_whatsapp_chat_live/views/views.xml @@ -0,0 +1,22 @@ + + + + + + \ No newline at end of file