diff --git a/website_tawk_to/README.rst b/website_tawk_to/README.rst new file mode 100755 index 000000000..db6700517 --- /dev/null +++ b/website_tawk_to/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Website Tawk To +=============== +* This module integrates Tawk.to Live Chat into your Odoo website, enabling real-time communication with visitors. + +Installation +============ + - www.odoo.com/documentation/16.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer: (V16) Anusha C ,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/website_tawk_to/__init__.py b/website_tawk_to/__init__.py new file mode 100644 index 000000000..e07efffb9 --- /dev/null +++ b/website_tawk_to/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Anusha C (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################### +from . import models diff --git a/website_tawk_to/__manifest__.py b/website_tawk_to/__manifest__.py new file mode 100644 index 000000000..43e261e81 --- /dev/null +++ b/website_tawk_to/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Anusha C (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################### +{ + 'name': 'Website Tawk To', + 'version': '16.0.1.0.0', + 'category': 'Website', + 'summary': """Enhance real-time customer communication on your website with + Tawk.to Live Chat.""", + 'description': """This module integrates Tawk.to Live Chat into your Odoo + website, enabling real-time communication with visitors.""", + 'author': 'Cybrosys Techno solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['website'], + 'data': ['views/res_config_settings_views.xml'], + 'assets': { + 'web.assets_backend': [ + 'website_tawk_to/static/src/js/website_tawk_to.js', + 'website_tawk_to/static/src/xml/website_tawk_to.xml']}, + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/website_tawk_to/doc/RELEASE_NOTES.md b/website_tawk_to/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..69bacec6c --- /dev/null +++ b/website_tawk_to/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 03.01.2024 +#### Version 16.0.1.0.0 +#### ADD + +- Initial commit for Website Tawk To diff --git a/website_tawk_to/models/__init__.py b/website_tawk_to/models/__init__.py new file mode 100644 index 000000000..d1a2e4f0a --- /dev/null +++ b/website_tawk_to/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Anusha C (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################### +from . import res_config_settings diff --git a/website_tawk_to/models/res_config_settings.py b/website_tawk_to/models/res_config_settings.py new file mode 100755 index 000000000..f36f79e38 --- /dev/null +++ b/website_tawk_to/models/res_config_settings.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Anusha C (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################### +from odoo import fields, models + + +class ConfSetting(models.TransientModel): + """This model is to add an property_id and widget_id in the settings""" + _inherit = "res.config.settings" + + property_id = fields.Char(string="Property ID", + config_parameter='website_tawk_to.property_id', + help="Please enter the property id of tawk to.") + widget_id = fields.Char(string="Widget ID", + config_parameter='website_tawk_to.widget_id', + help="Please enter the website id of tawk to.") diff --git a/website_tawk_to/static/description/assets/icons/check.png b/website_tawk_to/static/description/assets/icons/check.png new file mode 100755 index 000000000..c8e85f51d Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/check.png differ diff --git a/website_tawk_to/static/description/assets/icons/chevron.png b/website_tawk_to/static/description/assets/icons/chevron.png new file mode 100755 index 000000000..2089293d6 Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/chevron.png differ diff --git a/website_tawk_to/static/description/assets/icons/cogs.png b/website_tawk_to/static/description/assets/icons/cogs.png new file mode 100755 index 000000000..95d0bad62 Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/cogs.png differ diff --git a/website_tawk_to/static/description/assets/icons/consultation.png b/website_tawk_to/static/description/assets/icons/consultation.png new file mode 100755 index 000000000..8319d4baa Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/consultation.png differ diff --git a/website_tawk_to/static/description/assets/icons/ecom-black.png b/website_tawk_to/static/description/assets/icons/ecom-black.png new file mode 100755 index 000000000..a9385ff13 Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/ecom-black.png differ diff --git a/website_tawk_to/static/description/assets/icons/education-black.png b/website_tawk_to/static/description/assets/icons/education-black.png new file mode 100755 index 000000000..3eb09b27b Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/education-black.png differ diff --git a/website_tawk_to/static/description/assets/icons/hotel-black.png b/website_tawk_to/static/description/assets/icons/hotel-black.png new file mode 100755 index 000000000..130f613be Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/hotel-black.png differ diff --git a/website_tawk_to/static/description/assets/icons/license.png b/website_tawk_to/static/description/assets/icons/license.png new file mode 100755 index 000000000..a5869797e Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/license.png differ diff --git a/website_tawk_to/static/description/assets/icons/lifebuoy.png b/website_tawk_to/static/description/assets/icons/lifebuoy.png new file mode 100755 index 000000000..658d56ccc Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/lifebuoy.png differ diff --git a/website_tawk_to/static/description/assets/icons/manufacturing-black.png b/website_tawk_to/static/description/assets/icons/manufacturing-black.png new file mode 100755 index 000000000..697eb0e9f Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/manufacturing-black.png differ diff --git a/website_tawk_to/static/description/assets/icons/pos-black.png b/website_tawk_to/static/description/assets/icons/pos-black.png new file mode 100755 index 000000000..97c0f90c1 Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/pos-black.png differ diff --git a/website_tawk_to/static/description/assets/icons/puzzle.png b/website_tawk_to/static/description/assets/icons/puzzle.png new file mode 100755 index 000000000..65cf854e7 Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/puzzle.png differ diff --git a/website_tawk_to/static/description/assets/icons/restaurant-black.png b/website_tawk_to/static/description/assets/icons/restaurant-black.png new file mode 100755 index 000000000..4a35eb939 Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/restaurant-black.png differ diff --git a/website_tawk_to/static/description/assets/icons/service-black.png b/website_tawk_to/static/description/assets/icons/service-black.png new file mode 100755 index 000000000..301ab51cb Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/service-black.png differ diff --git a/website_tawk_to/static/description/assets/icons/trading-black.png b/website_tawk_to/static/description/assets/icons/trading-black.png new file mode 100755 index 000000000..9398ba2f1 Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/trading-black.png differ diff --git a/website_tawk_to/static/description/assets/icons/training.png b/website_tawk_to/static/description/assets/icons/training.png new file mode 100755 index 000000000..884ca024d Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/training.png differ diff --git a/website_tawk_to/static/description/assets/icons/update.png b/website_tawk_to/static/description/assets/icons/update.png new file mode 100755 index 000000000..ecbc5a01a Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/update.png differ diff --git a/website_tawk_to/static/description/assets/icons/user.png b/website_tawk_to/static/description/assets/icons/user.png new file mode 100755 index 000000000..6ffb23d9f Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/user.png differ diff --git a/website_tawk_to/static/description/assets/icons/wrench.png b/website_tawk_to/static/description/assets/icons/wrench.png new file mode 100755 index 000000000..6c04dea0f Binary files /dev/null and b/website_tawk_to/static/description/assets/icons/wrench.png differ diff --git a/website_tawk_to/static/description/assets/misc/categories.png b/website_tawk_to/static/description/assets/misc/categories.png new file mode 100755 index 000000000..bedf1e0b1 Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/categories.png differ diff --git a/website_tawk_to/static/description/assets/misc/check-box.png b/website_tawk_to/static/description/assets/misc/check-box.png new file mode 100755 index 000000000..42caf24b9 Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/check-box.png differ diff --git a/website_tawk_to/static/description/assets/misc/compass.png b/website_tawk_to/static/description/assets/misc/compass.png new file mode 100755 index 000000000..d5fed8faa Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/compass.png differ diff --git a/website_tawk_to/static/description/assets/misc/corporate.png b/website_tawk_to/static/description/assets/misc/corporate.png new file mode 100755 index 000000000..2eb13edbf Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/corporate.png differ diff --git a/website_tawk_to/static/description/assets/misc/customer-support.png b/website_tawk_to/static/description/assets/misc/customer-support.png new file mode 100755 index 000000000..79efc72ed Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/customer-support.png differ diff --git a/website_tawk_to/static/description/assets/misc/cybrosys-logo.png b/website_tawk_to/static/description/assets/misc/cybrosys-logo.png new file mode 100755 index 000000000..cc3cc0ccf Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/cybrosys-logo.png differ diff --git a/website_tawk_to/static/description/assets/misc/features.png b/website_tawk_to/static/description/assets/misc/features.png new file mode 100755 index 000000000..b41769f77 Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/features.png differ diff --git a/website_tawk_to/static/description/assets/misc/logo.png b/website_tawk_to/static/description/assets/misc/logo.png new file mode 100755 index 000000000..478462d3e Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/logo.png differ diff --git a/website_tawk_to/static/description/assets/misc/pictures.png b/website_tawk_to/static/description/assets/misc/pictures.png new file mode 100755 index 000000000..56d255fe9 Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/pictures.png differ diff --git a/website_tawk_to/static/description/assets/misc/pie-chart.png b/website_tawk_to/static/description/assets/misc/pie-chart.png new file mode 100755 index 000000000..426e05244 Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/pie-chart.png differ diff --git a/website_tawk_to/static/description/assets/misc/right-arrow.png b/website_tawk_to/static/description/assets/misc/right-arrow.png new file mode 100755 index 000000000..730984a06 Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/right-arrow.png differ diff --git a/website_tawk_to/static/description/assets/misc/star.png b/website_tawk_to/static/description/assets/misc/star.png new file mode 100755 index 000000000..2eb9ab29f Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/star.png differ diff --git a/website_tawk_to/static/description/assets/misc/support.png b/website_tawk_to/static/description/assets/misc/support.png new file mode 100755 index 000000000..4f18b8b82 Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/support.png differ diff --git a/website_tawk_to/static/description/assets/misc/whatsapp.png b/website_tawk_to/static/description/assets/misc/whatsapp.png new file mode 100755 index 000000000..d513a5356 Binary files /dev/null and b/website_tawk_to/static/description/assets/misc/whatsapp.png differ diff --git a/website_tawk_to/static/description/assets/modules/1.png b/website_tawk_to/static/description/assets/modules/1.png new file mode 100644 index 000000000..9de1176ad Binary files /dev/null and b/website_tawk_to/static/description/assets/modules/1.png differ diff --git a/website_tawk_to/static/description/assets/modules/2.gif b/website_tawk_to/static/description/assets/modules/2.gif new file mode 100644 index 000000000..db040e0de Binary files /dev/null and b/website_tawk_to/static/description/assets/modules/2.gif differ diff --git a/website_tawk_to/static/description/assets/modules/3.jpg b/website_tawk_to/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..22cfedd70 Binary files /dev/null and b/website_tawk_to/static/description/assets/modules/3.jpg differ diff --git a/website_tawk_to/static/description/assets/modules/4.png b/website_tawk_to/static/description/assets/modules/4.png new file mode 100644 index 000000000..1c98e213f Binary files /dev/null and b/website_tawk_to/static/description/assets/modules/4.png differ diff --git a/website_tawk_to/static/description/assets/modules/5.png b/website_tawk_to/static/description/assets/modules/5.png new file mode 100644 index 000000000..93c573093 Binary files /dev/null and b/website_tawk_to/static/description/assets/modules/5.png differ diff --git a/website_tawk_to/static/description/assets/modules/6.png b/website_tawk_to/static/description/assets/modules/6.png new file mode 100644 index 000000000..8d99e8c68 Binary files /dev/null and b/website_tawk_to/static/description/assets/modules/6.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/scrnsht0.png b/website_tawk_to/static/description/assets/screenshots/scrnsht0.png new file mode 100644 index 000000000..39d4ecfd4 Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/scrnsht0.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/scrnsht1.png b/website_tawk_to/static/description/assets/screenshots/scrnsht1.png new file mode 100644 index 000000000..2f024c18e Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/scrnsht1.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/scrnsht10.png b/website_tawk_to/static/description/assets/screenshots/scrnsht10.png new file mode 100644 index 000000000..317f1f026 Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/scrnsht10.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/scrnsht11.png b/website_tawk_to/static/description/assets/screenshots/scrnsht11.png new file mode 100644 index 000000000..40015ff43 Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/scrnsht11.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/scrnsht12.png b/website_tawk_to/static/description/assets/screenshots/scrnsht12.png new file mode 100644 index 000000000..9e747669c Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/scrnsht12.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/scrnsht2.png b/website_tawk_to/static/description/assets/screenshots/scrnsht2.png new file mode 100644 index 000000000..0dd8f560a Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/scrnsht2.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/scrnsht3.png b/website_tawk_to/static/description/assets/screenshots/scrnsht3.png new file mode 100644 index 000000000..497b25145 Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/scrnsht3.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/scrnsht4.png b/website_tawk_to/static/description/assets/screenshots/scrnsht4.png new file mode 100644 index 000000000..d962af8af Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/scrnsht4.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/scrnsht5.png b/website_tawk_to/static/description/assets/screenshots/scrnsht5.png new file mode 100644 index 000000000..f6296f8cd Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/scrnsht5.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/scrnsht6.png b/website_tawk_to/static/description/assets/screenshots/scrnsht6.png new file mode 100644 index 000000000..35507b68a Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/scrnsht6.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/scrnsht7.png b/website_tawk_to/static/description/assets/screenshots/scrnsht7.png new file mode 100644 index 000000000..93e4211ce Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/scrnsht7.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/scrnsht8.png b/website_tawk_to/static/description/assets/screenshots/scrnsht8.png new file mode 100644 index 000000000..a0ce3914c Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/scrnsht8.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/scrnsht9.png b/website_tawk_to/static/description/assets/screenshots/scrnsht9.png new file mode 100644 index 000000000..8cb64266e Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/scrnsht9.png differ diff --git a/website_tawk_to/static/description/assets/screenshots/v16-hero.gif b/website_tawk_to/static/description/assets/screenshots/v16-hero.gif new file mode 100644 index 000000000..823e568cc Binary files /dev/null and b/website_tawk_to/static/description/assets/screenshots/v16-hero.gif differ diff --git a/website_tawk_to/static/description/banner.jpg b/website_tawk_to/static/description/banner.jpg new file mode 100644 index 000000000..ccc535dd5 Binary files /dev/null and b/website_tawk_to/static/description/banner.jpg differ diff --git a/website_tawk_to/static/description/icon.png b/website_tawk_to/static/description/icon.png new file mode 100644 index 000000000..c1f3394fa Binary files /dev/null and b/website_tawk_to/static/description/icon.png differ diff --git a/website_tawk_to/static/description/index.html b/website_tawk_to/static/description/index.html new file mode 100755 index 000000000..2fd3537cb --- /dev/null +++ b/website_tawk_to/static/description/index.html @@ -0,0 +1,734 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Website Tawk To

+

+ Enhance Real-time Customer Communication On Your Website + With Tawk.to Live Chat.

+ + +
+
+
+ + +
+ + +
+
+ +
+

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ This module integrates Tawk.to Live Chat into your Odoo website, + enabling real-time communication with visitors. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Community & + Enterprise Support. +
+
+ + Enable real-time chat for visitors. +
+
+ + Track and monitor real-time visitor data, including location, page views, and referrals. +
+
+ + Enable file sharing during chat for troubleshooting and resource sharing. +
+
+ + Notify agents on new chat requests and visitor messages. +
+
+ + Multi-language support in Tawk.to chat widget for a global audience. +
+
+ + Analytics and reporting for chat performance, visitor engagement, and agent productivity in Tawk.to. +
+
+ +
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+
+

+ Go to the Tawk.to website and click on the "Sign Up" button if + you don't have an account. If you already have an account, click + "Log In" instead. +

+

https://www.tawk.to/

+ +
+ +
+

+ Choose your preferred language from the available options. +

+ + +
+ +
+

+ Provide details about your website. +

+ + +
+ +
+

+ You can invite coworkers or team members to collaborate on managing chat conversations.

+ +
+ +
+

+ Click on the "Done" button

+ +
+ +
+

+ In the dashboard, navigate to the "Administration" section get your "Property ID"

+ +
+ +
+

+ Add the Property ID to Odoo Settings

+ +
+ +
+

+ Get Your Chat Widget ID from the Tawk.to Chat Widget

+ +
+
+

+ Add the Widget ID to Odoo Settings and click on the "SAVE" button.

+ +
+
+

+ After configuring and saving the Tawk.to settings in Odoo, you can typically view the chat widget with its icon on your Odoo

+ +
+
+

+ You can send Messages to Agents or Admins via the Chat Widget

+ +
+
+

+ Agent or admin,can manage and respond to visitor's messages and details through the Tawk.to dashboard.

+ +
+
+

+ You can view the Responses Instantly in Odoo

+ +
+ +
+
+ + + +
+
+ +
+

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

+
+
+
+
+ + + + +
+
+ +
+

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/website_tawk_to/static/src/js/website_tawk_to.js b/website_tawk_to/static/src/js/website_tawk_to.js new file mode 100644 index 000000000..da1fd36c0 --- /dev/null +++ b/website_tawk_to/static/src/js/website_tawk_to.js @@ -0,0 +1,20 @@ +/** @odoo-module **/ +import { WebClient } from "@web/webclient/webclient"; +import { patch } from "@web/core/utils/patch"; +import { useService } from "@web/core/utils/hooks"; +const { Component, onWillStart } = owl; + +patch(WebClient.prototype, "webclient_patch", { + //super the setup and on onWillStart get the values from the settings + setup() { + this._super.apply(this, arguments); + this.orm = useService("orm"); + this.state.tawk = null; + onWillStart(async () => { + const property = await this.orm.call("ir.config_parameter", "get_param", ["website_tawk_to.property_id"]) + const widget = await this.orm.call("ir.config_parameter", "get_param", ["website_tawk_to.widget_id"]) + this.state.property = property + this.state.widget = widget + }) + }, +}) diff --git a/website_tawk_to/static/src/xml/website_tawk_to.xml b/website_tawk_to/static/src/xml/website_tawk_to.xml new file mode 100644 index 000000000..97836c6f8 --- /dev/null +++ b/website_tawk_to/static/src/xml/website_tawk_to.xml @@ -0,0 +1,26 @@ + + + + + + + +
+ +
+
+
+
diff --git a/website_tawk_to/views/res_config_settings_views.xml b/website_tawk_to/views/res_config_settings_views.xml new file mode 100755 index 000000000..507be4518 --- /dev/null +++ b/website_tawk_to/views/res_config_settings_views.xml @@ -0,0 +1,54 @@ + + + + + + res.config.settings.view.form.inherit.website.tawk.to + + res.config.settings + + + +
+

Tawk To Configuration

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+