diff --git a/survey_whatsapp_integration/README.rst b/survey_whatsapp_integration/README.rst new file mode 100755 index 000000000..8bcb2e534 --- /dev/null +++ b/survey_whatsapp_integration/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Survey Whatsapp Integration +=========================== +This module helps to share survey link to customers through whatsapp. + +Configuration +============= +* Enable whatsapp user in settings + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developers: (V15) Ammu Raj, 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 `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/survey_whatsapp_integration/__init__.py b/survey_whatsapp_integration/__init__.py new file mode 100755 index 000000000..fa6162c3c --- /dev/null +++ b/survey_whatsapp_integration/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ammu Raj(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 +from . import wizard diff --git a/survey_whatsapp_integration/__manifest__.py b/survey_whatsapp_integration/__manifest__.py new file mode 100755 index 000000000..b6404b847 --- /dev/null +++ b/survey_whatsapp_integration/__manifest__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ammu Raj(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': 'Survey Whatsapp Integration', + 'version': '15.0.1.0.0', + 'category': 'Extra Tools', + 'summary': """Send survey link through whatsapp.""", + 'description': 'This module allows users to send link and' + ' other details about survey through whatsapp.', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['survey'], + 'data': ['security/survey_whatsapp_integration_groups.xml', + 'security/ir.model.access.csv', + 'views/survey_survey_views.xml', + 'views/configuration_manager_views.xml', + 'views/whatsapp_message_views.xml', + 'views/survey_whatsapp_integration_menu.xml', + 'wizard/survey_whatsapp_views.xml', + 'wizard/whatsapp_authenticate_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': True, +} diff --git a/survey_whatsapp_integration/doc/RELEASE_NOTES.md b/survey_whatsapp_integration/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..ccf9a29a6 --- /dev/null +++ b/survey_whatsapp_integration/doc/RELEASE_NOTES.md @@ -0,0 +1,5 @@ +## Module +#### 22.04.2024 +#### Version 15.0.1.0.0 +##### ADD +- Initial commit for Survey Whatsapp Integration diff --git a/survey_whatsapp_integration/models/__init__.py b/survey_whatsapp_integration/models/__init__.py new file mode 100755 index 000000000..8a1ce30e6 --- /dev/null +++ b/survey_whatsapp_integration/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ammu Raj(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 configuration_manager +from . import survey_survey +from . import whatsapp_message diff --git a/survey_whatsapp_integration/models/configuration_manager.py b/survey_whatsapp_integration/models/configuration_manager.py new file mode 100755 index 000000000..37b0a934e --- /dev/null +++ b/survey_whatsapp_integration/models/configuration_manager.py @@ -0,0 +1,90 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ammu Raj(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 . +# +############################################################################# +import requests +from odoo import fields, models, _ +from odoo.exceptions import ValidationError + + +class ConfigurationManager(models.Model): + """Create new model""" + _name = "configuration.manager" + _description = "Configuration Manager" + _rec_name = 'instance' + + instance = fields.Char(string="Instance", required=True, + help="Give instance for whatsapp api") + token = fields.Char(string="Token", required=True, + help="Give token for whatsapp api") + state = fields.Selection( + selection=[('draft', 'Not Verified'), + ('verified', 'Verified')], + default='draft', string="Status", + help="State for connection", readonly=True) + + def action_authenticate(self): + """ Opens a wizard for scanning QR code, + After scanning number get active status.""" + url = "https://api.apichat.io/v1/status" + headers = { + "client-id": self.instance, + "token": self.token + } + req = requests.get(url, headers=headers, timeout=10) + if req.status_code != 200: + raise ValidationError(_("Please provide valid token")) + if req.text == 'Client not found.': + return self.display_notification('danger', + 'Please check the field values') + if 'qr' in req.json().keys(): + self.state = "draft" + new_data = req.json()['qr'].replace('data:image/png;base64,', '') + return self.open_authenticate_wizard(new_data) + if req.json()['is_connected']: + self.state = "verified" + return self.display_notification('success', + 'Already connected') + + def display_notification(self, message_type, message): + """ Got connected message""" + return { + 'type': 'ir.actions.client', + 'tag': 'display_notification', + 'params': { + 'message': message, + 'type': message_type, + 'sticky': False, + } + } + + def open_authenticate_wizard(self, qrcode): + """Opens QR code scanning wizard""" + return { + 'type': 'ir.actions.act_window', + 'res_model': 'whatsapp.authenticate', + 'name': 'WhatsApp Connect', + 'views': [(False, 'form')], + 'target': 'new', + 'context': { + 'default_qrcode': qrcode, + 'default_config_manager_id': self.id, + } + } diff --git a/survey_whatsapp_integration/models/survey_survey.py b/survey_whatsapp_integration/models/survey_survey.py new file mode 100755 index 000000000..5201853ed --- /dev/null +++ b/survey_whatsapp_integration/models/survey_survey.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ammu Raj(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 models + + +class SurveySurvey(models.Model): + """ Inherit survey,so we are adding a + wizard for sending whatsapp. """ + _inherit = 'survey.survey' + + def action_whatsapp_send(self): + """Opens a wizard for whatsapp share""" + return { + 'name': "Whatsapp Share", + 'type': 'ir.actions.act_window', + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': 'survey.whatsapp', + 'view_id': self.env.ref( + 'survey_whatsapp_integration.survey_whatsapp_view_form').id, + 'target': 'new', + 'context': {'default_survey_id': self.id} + } diff --git a/survey_whatsapp_integration/models/whatsapp_message.py b/survey_whatsapp_integration/models/whatsapp_message.py new file mode 100755 index 000000000..4a4448f41 --- /dev/null +++ b/survey_whatsapp_integration/models/whatsapp_message.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ammu Raj(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 fields, models + + +class WhatsappMessage(models.Model): + """Create new model for viewing the History""" + _name = "whatsapp.message" + _description = "Whatsapp Message" + _rec_name = 'to_user' + + status = fields.Char(string="Status", + help="status of whatsapp messages") + from_user = fields.Many2one('res.users', string="Sent From", + help="from user in whatsapp messages", + required=True) + to_user = fields.Char(string="Sent to", + help="to user in whatsapp messages", required=True) + body = fields.Char(string="Message", + help="Message body in whatsapp messages", required=True) diff --git a/survey_whatsapp_integration/security/ir.model.access.csv b/survey_whatsapp_integration/security/ir.model.access.csv new file mode 100755 index 000000000..2cc5f6e80 --- /dev/null +++ b/survey_whatsapp_integration/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink +access_survey_whatsapp,access.survey.whatsapp,model_survey_whatsapp,base.group_user,1,1,1,1 +access_configuration_manager_whatsapp_user,access.configuration.manager.whatsapp.user,model_configuration_manager,survey_whatsapp_integration.survey_whatsapp_integration_group_user,1,1,1,1 +access_whatsapp_authenticate_whatsapp_user,access.whatsapp.authenticate.whatsapp.user,model_whatsapp_authenticate,survey_whatsapp_integration.survey_whatsapp_integration_group_user,1,1,1,1 +access_whatsapp_message_whatsapp_user,access.whatsapp.message.whatsapp.user,model_whatsapp_message,survey_whatsapp_integration.survey_whatsapp_integration_group_user,1,1,1,1 diff --git a/survey_whatsapp_integration/security/survey_whatsapp_integration_groups.xml b/survey_whatsapp_integration/security/survey_whatsapp_integration_groups.xml new file mode 100755 index 000000000..3630ed9cc --- /dev/null +++ b/survey_whatsapp_integration/security/survey_whatsapp_integration_groups.xml @@ -0,0 +1,9 @@ + + + + + + Whatsapp Messaging + + + diff --git a/survey_whatsapp_integration/static/description/assets/icons/check.png b/survey_whatsapp_integration/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/check.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/chevron.png b/survey_whatsapp_integration/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/chevron.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/cogs.png b/survey_whatsapp_integration/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/cogs.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/consultation.png b/survey_whatsapp_integration/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/consultation.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/ecom-black.png b/survey_whatsapp_integration/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/ecom-black.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/education-black.png b/survey_whatsapp_integration/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/education-black.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/hotel-black.png b/survey_whatsapp_integration/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/hotel-black.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/license.png b/survey_whatsapp_integration/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/license.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/lifebuoy.png b/survey_whatsapp_integration/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/lifebuoy.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/manufacturing-black.png b/survey_whatsapp_integration/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/manufacturing-black.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/pos-black.png b/survey_whatsapp_integration/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/pos-black.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/puzzle.png b/survey_whatsapp_integration/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/puzzle.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/restaurant-black.png b/survey_whatsapp_integration/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/restaurant-black.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/service-black.png b/survey_whatsapp_integration/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/service-black.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/trading-black.png b/survey_whatsapp_integration/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/trading-black.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/training.png b/survey_whatsapp_integration/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/training.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/update.png b/survey_whatsapp_integration/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/update.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/user.png b/survey_whatsapp_integration/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/user.png differ diff --git a/survey_whatsapp_integration/static/description/assets/icons/wrench.png b/survey_whatsapp_integration/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/icons/wrench.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/categories.png b/survey_whatsapp_integration/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/categories.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/check-box.png b/survey_whatsapp_integration/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/check-box.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/compass.png b/survey_whatsapp_integration/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/compass.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/corporate.png b/survey_whatsapp_integration/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/corporate.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/customer-support.png b/survey_whatsapp_integration/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/customer-support.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/cybrosys-logo.png b/survey_whatsapp_integration/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/cybrosys-logo.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/features.png b/survey_whatsapp_integration/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/features.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/logo.png b/survey_whatsapp_integration/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/logo.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/pictures.png b/survey_whatsapp_integration/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/pictures.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/pie-chart.png b/survey_whatsapp_integration/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/pie-chart.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/right-arrow.png b/survey_whatsapp_integration/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/right-arrow.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/star.png b/survey_whatsapp_integration/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/star.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/support.png b/survey_whatsapp_integration/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/support.png differ diff --git a/survey_whatsapp_integration/static/description/assets/misc/whatsapp.png b/survey_whatsapp_integration/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/misc/whatsapp.png differ diff --git a/survey_whatsapp_integration/static/description/assets/modules/1.png b/survey_whatsapp_integration/static/description/assets/modules/1.png new file mode 100644 index 000000000..8890ee31d Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/modules/1.png differ diff --git a/survey_whatsapp_integration/static/description/assets/modules/2.png b/survey_whatsapp_integration/static/description/assets/modules/2.png new file mode 100755 index 000000000..7de3c541d Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/modules/2.png differ diff --git a/survey_whatsapp_integration/static/description/assets/modules/3.png b/survey_whatsapp_integration/static/description/assets/modules/3.png new file mode 100644 index 000000000..96fc90703 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/modules/3.png differ diff --git a/survey_whatsapp_integration/static/description/assets/modules/4.png b/survey_whatsapp_integration/static/description/assets/modules/4.png new file mode 100644 index 000000000..e62836a85 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/modules/4.png differ diff --git a/survey_whatsapp_integration/static/description/assets/modules/5.png b/survey_whatsapp_integration/static/description/assets/modules/5.png new file mode 100644 index 000000000..2c03d01db Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/modules/5.png differ diff --git a/survey_whatsapp_integration/static/description/assets/modules/banner.gif b/survey_whatsapp_integration/static/description/assets/modules/banner.gif new file mode 100644 index 000000000..b9fa8b25f Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/modules/banner.gif differ diff --git a/survey_whatsapp_integration/static/description/assets/modules/hero.gif b/survey_whatsapp_integration/static/description/assets/modules/hero.gif new file mode 100644 index 000000000..2f9253579 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/modules/hero.gif differ diff --git a/survey_whatsapp_integration/static/description/assets/screenshots/1.png b/survey_whatsapp_integration/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..c993bae64 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/screenshots/1.png differ diff --git a/survey_whatsapp_integration/static/description/assets/screenshots/10.png b/survey_whatsapp_integration/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..1437526aa Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/screenshots/10.png differ diff --git a/survey_whatsapp_integration/static/description/assets/screenshots/11.png b/survey_whatsapp_integration/static/description/assets/screenshots/11.png new file mode 100644 index 000000000..0d622748d Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/screenshots/11.png differ diff --git a/survey_whatsapp_integration/static/description/assets/screenshots/2.png b/survey_whatsapp_integration/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..1f1dbff78 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/screenshots/2.png differ diff --git a/survey_whatsapp_integration/static/description/assets/screenshots/3.png b/survey_whatsapp_integration/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..4dfd5f08b Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/screenshots/3.png differ diff --git a/survey_whatsapp_integration/static/description/assets/screenshots/4.png b/survey_whatsapp_integration/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..910f84269 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/screenshots/4.png differ diff --git a/survey_whatsapp_integration/static/description/assets/screenshots/5.png b/survey_whatsapp_integration/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..e298b54a1 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/screenshots/5.png differ diff --git a/survey_whatsapp_integration/static/description/assets/screenshots/6.png b/survey_whatsapp_integration/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..352136540 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/screenshots/6.png differ diff --git a/survey_whatsapp_integration/static/description/assets/screenshots/7.png b/survey_whatsapp_integration/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..96b88a205 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/screenshots/7.png differ diff --git a/survey_whatsapp_integration/static/description/assets/screenshots/8.png b/survey_whatsapp_integration/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..44ede0250 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/screenshots/8.png differ diff --git a/survey_whatsapp_integration/static/description/assets/screenshots/9.png b/survey_whatsapp_integration/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..c5e6b8c9b Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/screenshots/9.png differ diff --git a/survey_whatsapp_integration/static/description/assets/screenshots/hero.gif b/survey_whatsapp_integration/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..18da14dd7 Binary files /dev/null and b/survey_whatsapp_integration/static/description/assets/screenshots/hero.gif differ diff --git a/survey_whatsapp_integration/static/description/banner.png b/survey_whatsapp_integration/static/description/banner.png new file mode 100644 index 000000000..260f1d75f Binary files /dev/null and b/survey_whatsapp_integration/static/description/banner.png differ diff --git a/survey_whatsapp_integration/static/description/icon.png b/survey_whatsapp_integration/static/description/icon.png new file mode 100644 index 000000000..bab6b48c8 Binary files /dev/null and b/survey_whatsapp_integration/static/description/icon.png differ diff --git a/survey_whatsapp_integration/static/description/index.html b/survey_whatsapp_integration/static/description/index.html new file mode 100644 index 000000000..afbbef366 --- /dev/null +++ b/survey_whatsapp_integration/static/description/index.html @@ -0,0 +1,662 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Survey Whatsapp Integration

+

+ This module helps to share Survey link to multiple Customers through Whatsapp.

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ Allows to Share survey link to multiple customers +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Community, Enterprise and Odoo SH Support. +
+
+
+
+ + Allows to Share survey link to multiple customers through Whatsapp. +
+
+
+ + + +
+
+ +
+

+ Screenshots +

+
+ +
+
+ +
+

+ Create an account in https://panel.apichat.io/app/accounts.Then take token and instance. +

+ +
+
+

+ Enable Whatsapp Messaging in settings of User. +

+ +
+
+

+ Choose whatsapp configuration. +

+ +
+
+

+ Create a new whatsapp QR code for login by giving instance and token. +

+ +
+
+

+ After scanning QR code from mobile save it. +

+ +
+
+

+ You can see the status in Application. +

+ +
+
+

+ Then click again in the Authenticate Button, after that you can see the Status as 'Verified'. +

+ +
+
+

+ In survey module click on whatsapp button. +

+ +
+
+

+ After Adding Recipients and Deadline click on SEND button. +

+ +
+
+

+ In whatsapp can see the messages send to Recipients. +

+ +
+
+

+ In whatsapp can see the messages send to Recipients. +

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

Related Modules

+

Explore our related modules

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

+ 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/survey_whatsapp_integration/views/configuration_manager_views.xml b/survey_whatsapp_integration/views/configuration_manager_views.xml new file mode 100755 index 000000000..fcd5d916d --- /dev/null +++ b/survey_whatsapp_integration/views/configuration_manager_views.xml @@ -0,0 +1,41 @@ + + + + + configuration.manager.view.tree + configuration.manager + + + + + + + + + + + configuration.manager.view.form + configuration.manager + +
+ + + + + + +