diff --git a/whatsapp_mail_messaging/README.rst b/whatsapp_mail_messaging/README.rst new file mode 100644 index 000000000..49a1903c7 --- /dev/null +++ b/whatsapp_mail_messaging/README.rst @@ -0,0 +1,44 @@ +.. 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 + +Odoo Whatsapp Connector +======================= +Odoo Whatsapp Connector For Sales, Invoice and Floating button in Website + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: Nishad@cybrosys + version 14: Sayooj A O @cybrosys + +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/whatsapp_mail_messaging/__init__.py b/whatsapp_mail_messaging/__init__.py index dda7ab060..1188422a3 100644 --- a/whatsapp_mail_messaging/__init__.py +++ b/whatsapp_mail_messaging/__init__.py @@ -4,7 +4,7 @@ # Cybrosys Technologies Pvt. Ltd. # # Copyright (C) 2020-TODAY Cybrosys Technologies() -# Author: Sayooj A O() +# Author: Sayooj A O () # # You can modify it under the terms of the GNU LESSER # GENERAL PUBLIC LICENSE (LGPL v3), Version 3. @@ -19,4 +19,6 @@ # If not, see . # ############################################################################# + +from . import model from . import wizard diff --git a/whatsapp_mail_messaging/__manifest__.py b/whatsapp_mail_messaging/__manifest__.py index ff1f16f25..fb39e3294 100644 --- a/whatsapp_mail_messaging/__manifest__.py +++ b/whatsapp_mail_messaging/__manifest__.py @@ -4,7 +4,7 @@ # Cybrosys Technologies Pvt. Ltd. # # Copyright (C) 2020-TODAY Cybrosys Technologies() -# Author: Sayooj A O() +# Author: Sayooj A O () # # You can modify it under the terms of the GNU LESSER # GENERAL PUBLIC LICENSE (LGPL v3), Version 3. @@ -19,31 +19,37 @@ # If not, see . # ############################################################################# + { - 'name': 'Whatsapp And Mail Messaging', - 'version': '14.0.1.0.0', + 'name': 'Odoo Whatsapp Connector', + 'version': '14.0.2.1.1', 'category': 'Extra Tools', - 'summary': """Module which allows to sent Whatsapp messages and Mails from any view of - Odoo""", - 'description': """Whatsapp Odoo, Whatsapp Odoo Message, Whatsapp, Odoo Whatsapp, Module which allows to sent Whatsapp messages and Mails from any view of - Odoo""", + 'summary': """Odoo Whatsapp Connector For Sales, Invoice, and Floating button in Website""", + 'description': """Added options for sending Whatsapp messages and Mails in systray bar,sale order, invoices, + website portal view and share the access url of documents using share option available in each records through + Whatsapp web..""", 'author': 'Cybrosys Techno Solutions', 'website': "https://www.cybrosys.com", 'company': 'Cybrosys Techno Solutions', 'maintainer': 'Cybrosys Techno Solutions', - 'depends': ['contacts', 'mail'], + 'depends': ['sale', 'account', 'website'], 'data': [ 'views/assets.xml', + 'views/portal_whatsapp_view.xml', + 'views/sale_order_inherited.xml', + 'views/account_move_inherited.xml', + 'views/website_inherited.xml', 'wizard/wh_message_wizard.xml', + 'wizard/portal_share_inherited.xml', 'security/ir.model.access.csv', ], 'qweb': [ 'static/src/xml/whatsapp_button.xml', 'static/src/xml/mail_button.xml', ], - 'images': ['static/description/banner.png'], + 'images': ['static/description/banner.gif'], 'license': 'LGPL-3', 'installable': True, 'auto_install': False, - 'application': True, + 'application': False, } diff --git a/whatsapp_mail_messaging/doc/changelog.md b/whatsapp_mail_messaging/doc/changelog.md index 20d230936..c270c2410 100644 --- a/whatsapp_mail_messaging/doc/changelog.md +++ b/whatsapp_mail_messaging/doc/changelog.md @@ -5,6 +5,11 @@ #### ADD - Initial commit +#### 25.06.2021 +#### Version 14.0.2.1.1 +#### UPDT +- New Features added + diff --git a/whatsapp_mail_messaging/model/__init__.py b/whatsapp_mail_messaging/model/__init__.py new file mode 100644 index 000000000..e590a7e62 --- /dev/null +++ b/whatsapp_mail_messaging/model/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Sayooj A O () +# +# 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 website +from . import sale_order +from . import account_move diff --git a/whatsapp_mail_messaging/model/account_move.py b/whatsapp_mail_messaging/model/account_move.py new file mode 100644 index 000000000..985f638c0 --- /dev/null +++ b/whatsapp_mail_messaging/model/account_move.py @@ -0,0 +1,89 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Sayooj A O () +# +# 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 itertools import groupby + +from odoo import models, _ +from odoo.exceptions import UserError + + +class Account(models.Model): + _inherit = 'account.move' + + def action_send_whatsapp(self): + compose_form_id = self.env.ref('whatsapp_mail_messaging.whatsapp_message_wizard_form').id + ctx = dict(self.env.context) + message = "Hi" + " " + self.partner_id.name + ',' + '\n' + "Here is your invoice" + ' ' + self.name + ' ' + "amounting" + ' ' + str( + self.amount_total) + self.currency_id.symbol + ' ' + "from " + self.company_id.name + ". Please remit payment at your earliest convenience. " + '\n' + \ + "Please use the following communication for your payment" + ' ' + self.name + ctx.update({ + 'default_message': message, + 'default_partner_id': self.partner_id.id, + 'default_mobile': self.partner_id.mobile, + 'default_image_1920': self.partner_id.image_1920, + }) + return { + 'type': 'ir.actions.act_window', + 'view_mode': 'form', + 'res_model': 'whatsapp.message.wizard', + 'views': [(compose_form_id, 'form')], + 'view_id': compose_form_id, + 'target': 'new', + 'context': ctx, + } + + def check_customers(self, partner_ids): + partners = groupby(partner_ids) + return next(partners, True) and not next(partners, False) + + def action_whatsapp_multi(self): + account_move_ids = self.env['account.move'].browse(self.env.context.get('active_ids')) + partner_ids = [] + for account_move in account_move_ids: + partner_ids.append(account_move.partner_id.id) + partner_check = self.check_customers(partner_ids) + if partner_check: + account_move_numbers = account_move_ids.mapped('name') + account_move_numbers = "\n".join(account_move_numbers) + compose_form_id = self.env.ref('whatsapp_mail_messaging.whatsapp_message_wizard_form').id + ctx = dict(self.env.context) + message = "Hi" + " " + self.partner_id.name + ',' + '\n' + "Your Orders are" + '\n' + account_move_numbers + \ + ' ' + "is ready for review.Do not hesitate to contact us if you have any questions." + ctx.update({ + 'default_message': message, + 'default_partner_id': account_move_ids[0].partner_id.id, + 'default_mobile': account_move_ids[0].partner_id.mobile, + 'default_image_1920': account_move_ids[0].partner_id.image_1920, + }) + return { + 'type': 'ir.actions.act_window', + 'view_mode': 'form', + 'res_model': 'whatsapp.message.wizard', + 'views': [(compose_form_id, 'form')], + 'view_id': compose_form_id, + 'target': 'new', + 'context': ctx, + } + else: + raise UserError(_( + 'It seems that you have selected Invoices of more than one customer.' + 'Try select Invoices of an unique customer')) diff --git a/whatsapp_mail_messaging/model/sale_order.py b/whatsapp_mail_messaging/model/sale_order.py new file mode 100644 index 000000000..dd5ff52b6 --- /dev/null +++ b/whatsapp_mail_messaging/model/sale_order.py @@ -0,0 +1,88 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Sayooj A O() +# +# 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 itertools import groupby + +from odoo import models, _ +from odoo.exceptions import UserError + + +class Sale(models.Model): + _inherit = 'sale.order' + + def action_send_whatsapp(self): + compose_form_id = self.env.ref('whatsapp_mail_messaging.whatsapp_message_wizard_form').id + ctx = dict(self.env.context) + message = "Hi" + " " + self.partner_id.name + ',' + '\n' + "Your quotation" + ' ' + self.name + ' ' + "amounting" + ' ' + str( + self.amount_total) + self.currency_id.symbol + ' ' + "is ready for review.Do not hesitate to contact us if you have any questions." + ctx.update({ + 'default_message': message, + 'default_partner_id': self.partner_id.id, + 'default_mobile': self.partner_id.mobile, + 'default_image_1920': self.partner_id.image_1920, + }) + return { + 'type': 'ir.actions.act_window', + 'view_mode': 'form', + 'res_model': 'whatsapp.message.wizard', + 'views': [(compose_form_id, 'form')], + 'view_id': compose_form_id, + 'target': 'new', + 'context': ctx, + } + + def check_customers(self, partner_ids): + partners = groupby(partner_ids) + return next(partners, True) and not next(partners, False) + + def action_whatsapp_multi(self): + sale_order_ids = self.env['sale.order'].browse(self.env.context.get('active_ids')) + partner_ids = [] + for sale in sale_order_ids: + partner_ids.append(sale.partner_id.id) + partner_check = self.check_customers(partner_ids) + if partner_check: + sale_numbers = sale_order_ids.mapped('name') + sale_numbers = "\n".join(sale_numbers) + compose_form_id = self.env.ref('whatsapp_mail_messaging.whatsapp_message_wizard_form').id + ctx = dict(self.env.context) + message = "Hi" + " " + self.partner_id.name + ',' + '\n' + "Your Orders are" + '\n' + sale_numbers + \ + ' ' + '\n' + "is ready for review.Do not hesitate to contact us if you have any questions." + ctx.update({ + 'default_message': message, + 'default_partner_id': sale_order_ids[0].partner_id.id, + 'default_mobile': sale_order_ids[0].partner_id.mobile, + 'default_image_1920': sale_order_ids[0].partner_id.image_1920, + }) + return { + 'type': 'ir.actions.act_window', + 'view_mode': 'form', + 'res_model': 'whatsapp.message.wizard', + 'views': [(compose_form_id, 'form')], + 'view_id': compose_form_id, + 'target': 'new', + 'context': ctx, + } + else: + raise UserError(_( + 'It seems that you have selected orders of more than one customer.' + 'Try select orders of an unique customer')) diff --git a/whatsapp_mail_messaging/model/website.py b/whatsapp_mail_messaging/model/website.py new file mode 100644 index 000000000..158a140f4 --- /dev/null +++ b/whatsapp_mail_messaging/model/website.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Sayooj A O() +# +# 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 Website(models.Model): + _inherit = 'website' + + mobile_number = fields.Char(string='Mobile Number') diff --git a/whatsapp_mail_messaging/static/description/assets/._.DS_Store b/whatsapp_mail_messaging/static/description/assets/._.DS_Store new file mode 100644 index 000000000..9ad849cdb Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/._.DS_Store differ diff --git a/whatsapp_mail_messaging/static/description/assets/arrows-transparent.png b/whatsapp_mail_messaging/static/description/assets/arrows-transparent.png deleted file mode 100644 index f2973bb02..000000000 Binary files a/whatsapp_mail_messaging/static/description/assets/arrows-transparent.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/assets/hero.gif b/whatsapp_mail_messaging/static/description/assets/hero.gif new file mode 100644 index 000000000..9b03e57e2 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/hero.gif differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._.DS_Store b/whatsapp_mail_messaging/static/description/assets/icons/._.DS_Store new file mode 100644 index 000000000..9ad849cdb Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._.DS_Store differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._cogs.png b/whatsapp_mail_messaging/static/description/assets/icons/._cogs.png new file mode 100644 index 000000000..f7148d473 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._cogs.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._consultation.png b/whatsapp_mail_messaging/static/description/assets/icons/._consultation.png new file mode 100644 index 000000000..aa8a531ac Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._consultation.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._ecom-black.png b/whatsapp_mail_messaging/static/description/assets/icons/._ecom-black.png new file mode 100644 index 000000000..ff71cac34 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._ecom-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._education-black.png b/whatsapp_mail_messaging/static/description/assets/icons/._education-black.png new file mode 100644 index 000000000..038789127 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._education-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._hotel-black.png b/whatsapp_mail_messaging/static/description/assets/icons/._hotel-black.png new file mode 100644 index 000000000..962af8bbc Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._hotel-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._license.png b/whatsapp_mail_messaging/static/description/assets/icons/._license.png new file mode 100644 index 000000000..26ba90fe5 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._license.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._lifebuoy.png b/whatsapp_mail_messaging/static/description/assets/icons/._lifebuoy.png new file mode 100644 index 000000000..51bb6606d Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._lifebuoy.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._manufacturing-black.png b/whatsapp_mail_messaging/static/description/assets/icons/._manufacturing-black.png new file mode 100644 index 000000000..54bc914ea Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._manufacturing-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._pos-black.png b/whatsapp_mail_messaging/static/description/assets/icons/._pos-black.png new file mode 100644 index 000000000..a11f4cd96 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._pos-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._puzzle.png b/whatsapp_mail_messaging/static/description/assets/icons/._puzzle.png new file mode 100644 index 000000000..f7e7e7e33 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._puzzle.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._restaurant-black.png b/whatsapp_mail_messaging/static/description/assets/icons/._restaurant-black.png new file mode 100644 index 000000000..33ea178a3 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._restaurant-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._service-black.png b/whatsapp_mail_messaging/static/description/assets/icons/._service-black.png new file mode 100644 index 000000000..0ec2cf2a5 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._service-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._trading-black.png b/whatsapp_mail_messaging/static/description/assets/icons/._trading-black.png new file mode 100644 index 000000000..d6299d375 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._trading-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._training.png b/whatsapp_mail_messaging/static/description/assets/icons/._training.png new file mode 100644 index 000000000..9bade5f8e Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._training.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._update.png b/whatsapp_mail_messaging/static/description/assets/icons/._update.png new file mode 100644 index 000000000..48784837e Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._update.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._user.png b/whatsapp_mail_messaging/static/description/assets/icons/._user.png new file mode 100644 index 000000000..d5b105ad2 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._user.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/._wrench.png b/whatsapp_mail_messaging/static/description/assets/icons/._wrench.png new file mode 100644 index 000000000..db48ce407 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/._wrench.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/01.png b/whatsapp_mail_messaging/static/description/assets/icons/01.png new file mode 100644 index 000000000..96116b285 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/01.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/02.png b/whatsapp_mail_messaging/static/description/assets/icons/02.png new file mode 100644 index 000000000..9dd8a71b4 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/02.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/03.png b/whatsapp_mail_messaging/static/description/assets/icons/03.png new file mode 100644 index 000000000..efefc08de Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/03.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/04.png b/whatsapp_mail_messaging/static/description/assets/icons/04.png new file mode 100644 index 000000000..d4697d252 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/04.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/chevron.png b/whatsapp_mail_messaging/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/chevron.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/cogs.png b/whatsapp_mail_messaging/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/cogs.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/consultation.png b/whatsapp_mail_messaging/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/consultation.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/ecom-black.png b/whatsapp_mail_messaging/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/ecom-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/ecom.png b/whatsapp_mail_messaging/static/description/assets/icons/ecom.png deleted file mode 100644 index 6e720d50e..000000000 Binary files a/whatsapp_mail_messaging/static/description/assets/icons/ecom.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/education-black.png b/whatsapp_mail_messaging/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/education-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/education.png b/whatsapp_mail_messaging/static/description/assets/icons/education.png deleted file mode 100644 index f0de98eb0..000000000 Binary files a/whatsapp_mail_messaging/static/description/assets/icons/education.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/feature-icons/._lifebuoy.png b/whatsapp_mail_messaging/static/description/assets/icons/feature-icons/._lifebuoy.png new file mode 100644 index 000000000..4f178d2ad Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/feature-icons/._lifebuoy.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/feature-icons/document.png b/whatsapp_mail_messaging/static/description/assets/icons/feature-icons/document.png new file mode 100644 index 000000000..4054e8480 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/feature-icons/document.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/feature-icons/down.png b/whatsapp_mail_messaging/static/description/assets/icons/feature-icons/down.png new file mode 100644 index 000000000..65a94a23b Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/feature-icons/down.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/feature-icons/lifebuoy.png b/whatsapp_mail_messaging/static/description/assets/icons/feature-icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/feature-icons/lifebuoy.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/hotel-black.png b/whatsapp_mail_messaging/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/hotel-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/hotel.png b/whatsapp_mail_messaging/static/description/assets/icons/hotel.png deleted file mode 100644 index 917c6a63e..000000000 Binary files a/whatsapp_mail_messaging/static/description/assets/icons/hotel.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/license.png b/whatsapp_mail_messaging/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/license.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/lifebuoy.png b/whatsapp_mail_messaging/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/lifebuoy.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/manufacturing-black.png b/whatsapp_mail_messaging/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/manufacturing-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/manufacturing.png b/whatsapp_mail_messaging/static/description/assets/icons/manufacturing.png deleted file mode 100644 index 68c3722f8..000000000 Binary files a/whatsapp_mail_messaging/static/description/assets/icons/manufacturing.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/pos-black.png b/whatsapp_mail_messaging/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/pos-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/pos.png b/whatsapp_mail_messaging/static/description/assets/icons/pos.png deleted file mode 100644 index 600bfe4f9..000000000 Binary files a/whatsapp_mail_messaging/static/description/assets/icons/pos.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/puzzle.png b/whatsapp_mail_messaging/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/puzzle.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/restaurant-black.png b/whatsapp_mail_messaging/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/restaurant-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/restaurant.png b/whatsapp_mail_messaging/static/description/assets/icons/restaurant.png deleted file mode 100644 index 680acf29e..000000000 Binary files a/whatsapp_mail_messaging/static/description/assets/icons/restaurant.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/service-black.png b/whatsapp_mail_messaging/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/service-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/service.png b/whatsapp_mail_messaging/static/description/assets/icons/service.png deleted file mode 100644 index bfbe7a6d2..000000000 Binary files a/whatsapp_mail_messaging/static/description/assets/icons/service.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/trading-black.png b/whatsapp_mail_messaging/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/trading-black.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/trading.png b/whatsapp_mail_messaging/static/description/assets/icons/trading.png deleted file mode 100644 index a741219b5..000000000 Binary files a/whatsapp_mail_messaging/static/description/assets/icons/trading.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/training.png b/whatsapp_mail_messaging/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/training.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/update.png b/whatsapp_mail_messaging/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/update.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/user.png b/whatsapp_mail_messaging/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/user.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/icons/wrench.png b/whatsapp_mail_messaging/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/icons/wrench.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/modules/discount.png b/whatsapp_mail_messaging/static/description/assets/modules/discount.png new file mode 100644 index 000000000..2901d6ef4 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/modules/discount.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/modules/dynamic_financial_report.jpg b/whatsapp_mail_messaging/static/description/assets/modules/dynamic_financial_report.jpg new file mode 100644 index 000000000..c79986ab0 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/modules/dynamic_financial_report.jpg differ diff --git a/whatsapp_mail_messaging/static/description/assets/modules/invoice.jpg b/whatsapp_mail_messaging/static/description/assets/modules/invoice.jpg new file mode 100644 index 000000000..26fb9d33f Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/modules/invoice.jpg differ diff --git a/whatsapp_mail_messaging/static/description/assets/modules/payroll_accounting.png b/whatsapp_mail_messaging/static/description/assets/modules/payroll_accounting.png new file mode 100644 index 000000000..488b05c36 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/modules/payroll_accounting.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/modules/pos_dashboard.png b/whatsapp_mail_messaging/static/description/assets/modules/pos_dashboard.png new file mode 100644 index 000000000..a915fe4c5 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/modules/pos_dashboard.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/modules/shopify.png b/whatsapp_mail_messaging/static/description/assets/modules/shopify.png new file mode 100644 index 000000000..f2751c663 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/modules/shopify.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_1.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_1.png new file mode 100644 index 000000000..22932fd5e Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_1.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_10.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_10.png new file mode 100644 index 000000000..9789c0e94 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_10.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_11.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_11.png new file mode 100644 index 000000000..a379496df Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_11.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_12.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_12.png new file mode 100644 index 000000000..abe982ad3 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_12.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_13.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_13.png new file mode 100644 index 000000000..9adcb9721 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_13.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_14.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_14.png new file mode 100644 index 000000000..73f78d065 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_14.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_15.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_15.png new file mode 100644 index 000000000..5f84c9bea Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_15.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_16.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_16.png new file mode 100644 index 000000000..4f961c5f7 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_16.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_17.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_17.png new file mode 100644 index 000000000..507317a3f Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_17.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_18.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_18.png new file mode 100644 index 000000000..4b1d8a968 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_18.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_19.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_19.png new file mode 100644 index 000000000..54d45f948 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_19.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_2.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_2.png new file mode 100644 index 000000000..2aa121550 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_2.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_20.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_20.png new file mode 100644 index 000000000..9b9c6c3a7 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_20.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_21.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_21.png new file mode 100644 index 000000000..914435374 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_21.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_22.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_22.png new file mode 100644 index 000000000..8708076a9 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_22.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_3.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_3.png new file mode 100644 index 000000000..7af8d5608 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_3.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_4.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_4.png new file mode 100644 index 000000000..54f000798 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_4.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_5.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_5.png new file mode 100644 index 000000000..1686435d9 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_5.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_6.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_6.png new file mode 100644 index 000000000..11b2f2fd0 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_6.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_7.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_7.png new file mode 100644 index 000000000..8a93b4d9e Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_7.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_8.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_8.png new file mode 100644 index 000000000..630aa4c4c Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_8.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_9.png b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_9.png new file mode 100644 index 000000000..6a62dd8e9 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/assets/screenshots/whatsapp_mail_messaging_9.png differ diff --git a/whatsapp_mail_messaging/static/description/assets/trophy.png b/whatsapp_mail_messaging/static/description/assets/trophy.png deleted file mode 100644 index a5496a866..000000000 Binary files a/whatsapp_mail_messaging/static/description/assets/trophy.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/banner.gif b/whatsapp_mail_messaging/static/description/banner.gif new file mode 100644 index 000000000..4c0c52982 Binary files /dev/null and b/whatsapp_mail_messaging/static/description/banner.gif differ diff --git a/whatsapp_mail_messaging/static/description/banner.png b/whatsapp_mail_messaging/static/description/banner.png deleted file mode 100644 index 57bd267ba..000000000 Binary files a/whatsapp_mail_messaging/static/description/banner.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/icon.png b/whatsapp_mail_messaging/static/description/icon.png index 8610eb052..c43c5aa28 100644 Binary files a/whatsapp_mail_messaging/static/description/icon.png and b/whatsapp_mail_messaging/static/description/icon.png differ diff --git a/whatsapp_mail_messaging/static/description/images/mail_1.png b/whatsapp_mail_messaging/static/description/images/mail_1.png deleted file mode 100644 index 535106a28..000000000 Binary files a/whatsapp_mail_messaging/static/description/images/mail_1.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/images/mail_2.png b/whatsapp_mail_messaging/static/description/images/mail_2.png deleted file mode 100644 index 49ec2df24..000000000 Binary files a/whatsapp_mail_messaging/static/description/images/mail_2.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/images/mail_3.png b/whatsapp_mail_messaging/static/description/images/mail_3.png deleted file mode 100644 index 7ca20ab22..000000000 Binary files a/whatsapp_mail_messaging/static/description/images/mail_3.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/images/screen.gif b/whatsapp_mail_messaging/static/description/images/screen.gif deleted file mode 100644 index 0df84a38a..000000000 Binary files a/whatsapp_mail_messaging/static/description/images/screen.gif and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/images/whatsapp_1.png b/whatsapp_mail_messaging/static/description/images/whatsapp_1.png deleted file mode 100644 index 8a9848323..000000000 Binary files a/whatsapp_mail_messaging/static/description/images/whatsapp_1.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/images/whatsapp_2.png b/whatsapp_mail_messaging/static/description/images/whatsapp_2.png deleted file mode 100644 index b49041b46..000000000 Binary files a/whatsapp_mail_messaging/static/description/images/whatsapp_2.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/images/whatsapp_3.png b/whatsapp_mail_messaging/static/description/images/whatsapp_3.png deleted file mode 100644 index 0424e2604..000000000 Binary files a/whatsapp_mail_messaging/static/description/images/whatsapp_3.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/images/whatsapp_4.png b/whatsapp_mail_messaging/static/description/images/whatsapp_4.png deleted file mode 100644 index 101c32efa..000000000 Binary files a/whatsapp_mail_messaging/static/description/images/whatsapp_4.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/images/whatsapp_5.png b/whatsapp_mail_messaging/static/description/images/whatsapp_5.png deleted file mode 100644 index bb2ae1d4f..000000000 Binary files a/whatsapp_mail_messaging/static/description/images/whatsapp_5.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/images/whatsapp_6.png b/whatsapp_mail_messaging/static/description/images/whatsapp_6.png deleted file mode 100644 index 76d1454ef..000000000 Binary files a/whatsapp_mail_messaging/static/description/images/whatsapp_6.png and /dev/null differ diff --git a/whatsapp_mail_messaging/static/description/index.html b/whatsapp_mail_messaging/static/description/index.html index ca41f9869..0568eb845 100644 --- a/whatsapp_mail_messaging/static/description/index.html +++ b/whatsapp_mail_messaging/static/description/index.html @@ -1,770 +1,711 @@ - - - - - - - - Invoice Template Editor - - - - - -
-
-
- -
-
- -
-

- Whatsapp Mail Messaging

- -

- Send Whatsapp messages and Mails from any view of Odoo -

- - Key Highlights - -
-
-
- -
    -
  • Added Whatsapp and Mail icons in Systray for easy access from any views. -
  • -
  • Can send mails to any valid mail addresses along with attachments. -
  • Can send Whatsapp messages to any valid mobile numbers. - along with country code. -
  • -
  • After sending message from odoo then automatically - redirected to Whatsapp web with our message. -
  • -
  • Our module also supporting the emojis along with the whatsapp messages. -
-
-
-
- -
- - -
- - -
- -
- -
-
-
- - -
-
- -
-
-

- Overview

- -

In this module we have added Whatsapp and Mail icon in the systray bar which - the user can send messages through whatsapp and mail from any view using these icons.The mails will be sent from the mail - which we configured as the outgoing mail server and in case of whatsapp message, it will redirected to the whatsapp web.

-
-
-

- Features

-
    -
  • -
    - Added Whatsapp and Mail icons in Systray for easy access from any views.
    -
  • -
  • -
    - Can send mails to any valid mail addresses along with attachments.
    -
  • -
  • -
    - Can send Whatsapp messages to any valid mobile numbers. - along with country code.
    -
  • -
  • -
    - After sending message from odoo then automatically - redirected to Whatsapp web with our message.
    -
  • -
  • -
    - Our module also supporting the emojis along with the whatsapp messages.
    -
  • -
-
-
-

- Screenshots

-
-
- - - - - - - -
-
-
-
- -
-
-
- -
-

- Suggested Products

-
- -
- - -
- -
-
- Odoo Gold Partner -
-
-

- Our Services

-

We provide following services

- -
-
-
- Odoo Gold Partner -
-
- - -
- -
- - -
-
-
-

- Need Help?

-
-
-
- - -
-
-
Visit us
-

Visit our - website for more - information.

- www.cybrosys.com -
- -
-
Write to us
-

Do you - have any queries regarding our - products & services? Let us know.

- odoo@cybrosys.com - info@cybrosys.com -
-
-
Follow Us
-

Follow us - on social media for latest - updates.

-
- - - - - - -
- -
- -
-
-
- -
-
- -
- -
- -
-
- -
-
-
- - - - - + +
+
+
+
+

+ Odoo Whatsapp Connector +

+

+ Added options for sending Whatsapp messages and Mails in systray bar,sale order, invoices, website portal view and share the access url of + documents using share option available in each records through Whatsapp web.

+ +
+
+
+ +
+
+
+
+ +

+ Whatsapp/Mail Icon in systray bar

+

+ Using these icons we can send quick messages to any contacts through mail and whatsapp web.

+
+
+
+
+ +

+ Whatsapp floating icon in website

+

+ Added a whatsapp icon in website in which the customers can communicate with website through whatsapp.

+
+
+
+ +
+
+
+ +

+ Whatsapp button in Sales and Invoice

+

+ Using this button we can send the order/invoice details to the customer of the + corresponding documents..

+
+
+
+
+ +

+ Added Whatsapp as a share option

+

+ With this we can share the access link of document to customers through whatsapp web.

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

+ Screenshots

+
+ +
+
+
+
1
+
+
Added Whatsapp and Mail icon in the systray bar
+
+ +
+
+
+
+
2
+
+
By clicking on the mail icon we will have a mail composing screen like below + which we can specify the content,customer,subject and attachments.
+
+ +
+
+
+
+
3
+
+
After click on send from the composing wizard the corresponding recipients will receive the mail.
+
+ +
+
+
+
+
4
+
+
We have to specify the mobile field in contact form along with the country code for filling + the mobile number automatically in the whatsapp message composing wizard.
+
+ +
+
+
+
+
5
+
+
After click on the whatsapp icon in systray, we will have a message composing screen like this.
+
+ +
+
+
+
+
6
+
+
We can use the below emojis in our message
+
+ +
+
+
+
+
6
+
+
After click on send , we will redirected to the whatsapp web along with our message
+
+ +
+
+
+
+
7
+
+
The message we entered in odoo will carried to the corresponding number in our contact.
+
+ +
+
+
+
+
8
+
+
In Invoice form view we will have a button "Send by Whatsapp"
+
+ +
+
+
+
+
9
+
+
By clicking on "Send by Whatsapp" button ,a popup will arrive with auto filled details such as recipient,number and required content, + we can edit those details if required.
+
+ +
+
+
+
+
10
+
+
The message will redirect to the whatsapp web with the details in the popup.
+
+ +
+
+
+
+
11
+
+
In Sale Order form view we will have a button "Send by Whatsapp"
+
+ +
+
+
+
+
12
+
+
By clicking on "Send by Whatsapp" button ,a popup will arrive with auto filled details such as recipient,number and required content, + we can edit those details if required.
+
+ +
+
+
+
+
13
+
+
The message will redirect to the whatsapp web with the details in the popup
+
+ +
+
+
+
+
14
+
+
In the website form view we can define the number along with country code required for communicating with the + website responsible.
+
+ +
+
+
+
+
15
+
+
There will be a whatsapp icon present in the website.
+
+ +
+
+
+
+
16
+
+
By clicking on the whatsapp floating icon it will redirect to whatsapp web with the recipient as the number specified in corresponding website
+
+ +
+
+
+
+
17
+
+
We will have a share menu in documents like sales order, invoices, purchase etc..
+
+ +
+
+
+
+
18
+
+
By clicking on that there will be an additional option 'Whatsapp" in the popup screen where we can add the customer + and additional contents if we need.
+
+ +
+
+
+
+
19
+
+
After click on send first it will redirected to then whatsapp web and then to corresponding contact in our whatsapp + along with the custom message and link for accessing the document.
+
+ +
+
+
+
+
19
+
+
In the sales and invoice list view, we will have an option after selecting the records in the list view.
+
+ +
+
+
+
+
19
+
+
We can send multiple document references to a single customer using this option, + we can only send documents of a single customer at a time.
+
+ +
+ +
+
+ + + + +
+
+
+

+ Suggested Products

+

+ Check out our other products

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

+ Our Services

+

+ We provide following services

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

+ Our Industries

+

+ Our Industry Specifics And Process Segments To Solve Your Complex Business Barriers.

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

+

+ Do you have any queries regarding our products & services? Let us know.

+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ \ No newline at end of file diff --git a/whatsapp_mail_messaging/static/src/css/whatsapp.css b/whatsapp_mail_messaging/static/src/css/whatsapp.css new file mode 100644 index 000000000..91dd355b3 --- /dev/null +++ b/whatsapp_mail_messaging/static/src/css/whatsapp.css @@ -0,0 +1,22 @@ +.cy_whatsapp_web{ + position:fixed; + width:60px; + height:60px; + bottom:40px; + right:40px; + background-color:#25d366; + color:#FFF; + border-radius:50px; + text-align:center; + font-size:30px; + z-index:100; +} + +.cy-icon{ + margin-top:16px; + color: white; +} + +.fa-whatsapp { + color:#FFF; +} \ No newline at end of file diff --git a/whatsapp_mail_messaging/views/account_move_inherited.xml b/whatsapp_mail_messaging/views/account_move_inherited.xml new file mode 100644 index 000000000..0b745582e --- /dev/null +++ b/whatsapp_mail_messaging/views/account_move_inherited.xml @@ -0,0 +1,25 @@ + + + + account.move.form.view.inherited + account.move + + + +