diff --git a/website_floating_whatsapp_icon/README.rst b/website_floating_whatsapp_icon/README.rst new file mode 100644 index 000000000..f4942cd9a --- /dev/null +++ b/website_floating_whatsapp_icon/README.rst @@ -0,0 +1,43 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Whatsapp Floating Icon in Website +================================= +Whatsapp Floating button in Website + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: Noorjahan @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/website_floating_whatsapp_icon/__init__.py b/website_floating_whatsapp_icon/__init__.py new file mode 100644 index 000000000..7e89f58d5 --- /dev/null +++ b/website_floating_whatsapp_icon/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Noorjahan N A () +# +# 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 model \ No newline at end of file diff --git a/website_floating_whatsapp_icon/__manifest__.py b/website_floating_whatsapp_icon/__manifest__.py new file mode 100644 index 000000000..7c3bdc1d0 --- /dev/null +++ b/website_floating_whatsapp_icon/__manifest__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Noorjahan N A () +# +# 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': 'Whatsapp Floating Icon in Website', + 'version': '15.0.1.0.0', + 'category': 'Extra Tools', + 'summary': """Whatsapp Floating Icon in Website""", + 'description': """Whatsapp Floating Icon in Website, Website Floating WhatsApp Icon, Whatsapp Odoo Website,Whatsapp Odoo Coonector, Whatsapp website, Whatsapp""", + 'author': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'depends': ['website'], + 'data': [ + 'views/portal_whatsapp_view.xml', + 'views/website_inherited.xml', + ], + 'images': ['static/description/banner.png'], + 'assets': { + 'web.assets_frontend': [ + '/website_floating_whatsapp_icon/static/src/css/whatsapp.css', + ], + }, + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/website_floating_whatsapp_icon/doc/changelog.md b/website_floating_whatsapp_icon/doc/changelog.md new file mode 100644 index 000000000..e3dc00a17 --- /dev/null +++ b/website_floating_whatsapp_icon/doc/changelog.md @@ -0,0 +1,10 @@ +## Module + +#### 22.11.2021 +#### Version 15.0.1.0.0 +#### ADD +- Initial commit + + + + diff --git a/website_floating_whatsapp_icon/model/__init__.py b/website_floating_whatsapp_icon/model/__init__.py new file mode 100644 index 000000000..2691cb3fd --- /dev/null +++ b/website_floating_whatsapp_icon/model/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Noorjahan N A () +# +# 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 \ No newline at end of file diff --git a/website_floating_whatsapp_icon/model/website.py b/website_floating_whatsapp_icon/model/website.py new file mode 100644 index 000000000..b227dd87a --- /dev/null +++ b/website_floating_whatsapp_icon/model/website.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: Noorjahan N A () +# +# 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/website_floating_whatsapp_icon/static/description/assets/icons/check.png b/website_floating_whatsapp_icon/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/check.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/chevron.png b/website_floating_whatsapp_icon/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/chevron.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/cogs.png b/website_floating_whatsapp_icon/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/cogs.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/consultation.png b/website_floating_whatsapp_icon/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/consultation.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/ecom-black.png b/website_floating_whatsapp_icon/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/ecom-black.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/education-black.png b/website_floating_whatsapp_icon/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/education-black.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/hotel-black.png b/website_floating_whatsapp_icon/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/hotel-black.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/license.png b/website_floating_whatsapp_icon/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/license.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/lifebuoy.png b/website_floating_whatsapp_icon/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/lifebuoy.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/logo.png b/website_floating_whatsapp_icon/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/logo.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/manufacturing-black.png b/website_floating_whatsapp_icon/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/manufacturing-black.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/pos-black.png b/website_floating_whatsapp_icon/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/pos-black.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/puzzle.png b/website_floating_whatsapp_icon/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/puzzle.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/restaurant-black.png b/website_floating_whatsapp_icon/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/restaurant-black.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/service-black.png b/website_floating_whatsapp_icon/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/service-black.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/trading-black.png b/website_floating_whatsapp_icon/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/trading-black.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/training.png b/website_floating_whatsapp_icon/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/training.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/update.png b/website_floating_whatsapp_icon/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/update.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/user.png b/website_floating_whatsapp_icon/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/user.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/icons/wrench.png b/website_floating_whatsapp_icon/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/icons/wrench.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/modules/budget_image.png b/website_floating_whatsapp_icon/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..b50130c7d Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/modules/budget_image.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/modules/credit_image.png b/website_floating_whatsapp_icon/static/description/assets/modules/credit_image.png new file mode 100644 index 000000000..3ad04ecfd Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/modules/credit_image.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/modules/employee_image.png b/website_floating_whatsapp_icon/static/description/assets/modules/employee_image.png new file mode 100644 index 000000000..30ad58232 Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/modules/employee_image.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/modules/export_image.png b/website_floating_whatsapp_icon/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..492980ad0 Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/modules/export_image.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/modules/gantt_image.png b/website_floating_whatsapp_icon/static/description/assets/modules/gantt_image.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/modules/gantt_image.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/modules/quotation_image.png b/website_floating_whatsapp_icon/static/description/assets/modules/quotation_image.png new file mode 100644 index 000000000..499b1a72f Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/modules/quotation_image.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/screenshots/form.png b/website_floating_whatsapp_icon/static/description/assets/screenshots/form.png new file mode 100644 index 000000000..b409f4bab Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/screenshots/form.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/screenshots/hero.png b/website_floating_whatsapp_icon/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..0721b3dda Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/screenshots/hero.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/screenshots/icon_whatsapp.png b/website_floating_whatsapp_icon/static/description/assets/screenshots/icon_whatsapp.png new file mode 100644 index 000000000..61aa1ee22 Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/screenshots/icon_whatsapp.png differ diff --git a/website_floating_whatsapp_icon/static/description/assets/screenshots/whatsapp_web.png b/website_floating_whatsapp_icon/static/description/assets/screenshots/whatsapp_web.png new file mode 100644 index 000000000..507317a3f Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/assets/screenshots/whatsapp_web.png differ diff --git a/website_floating_whatsapp_icon/static/description/banner.png b/website_floating_whatsapp_icon/static/description/banner.png new file mode 100644 index 000000000..3db55f3c1 Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/banner.png differ diff --git a/website_floating_whatsapp_icon/static/description/icon.png b/website_floating_whatsapp_icon/static/description/icon.png new file mode 100644 index 000000000..005817406 Binary files /dev/null and b/website_floating_whatsapp_icon/static/description/icon.png differ diff --git a/website_floating_whatsapp_icon/static/description/index.html b/website_floating_whatsapp_icon/static/description/index.html new file mode 100644 index 000000000..6f917075e --- /dev/null +++ b/website_floating_whatsapp_icon/static/description/index.html @@ -0,0 +1,554 @@ + +
+
+
+

+ Whatsapp Floating Icon in Website

+

+ Whatsapp Floating Icon in Website +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ This module add a whatsapp icon in website in which the customers can communicate with website + through whatsapp.

+ +
+
+ + +
+
+

+ Features +

+
+ + +
+
+ +
+
+

+ Easily access whatsapp from website.

+
+
+ +
+
+ +
+
+

+ Makes communication easier.

+
+
+ +
+ +
+
+

+ Screenshots +

+
+
+

+ Mobile number in webiste form

+

+ In the website form view we can define the number along with country code required for + communicating with the website responsible.

+ +
+ +
+

+ Whatsapp icon in website

+

+ There will be a whatsapp icon in the website. +

+ + +
+ +
+

+ Redirecting to whatsapp

+

+ By clicking on the whatsapp floating icon it will redirect to whatsapp web with the + recipient as the number specified in corresponding website. +

+ +
+ +
+ + +
+
+

Suggested Products

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

Our Services

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

Our Industries

+
+
+ +
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+ +
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

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

Need Help?

+
+
+
+ + +
+ +
+ +
+ +
+ WhatsApp +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/website_floating_whatsapp_icon/static/src/css/whatsapp.css b/website_floating_whatsapp_icon/static/src/css/whatsapp.css new file mode 100644 index 000000000..91dd355b3 --- /dev/null +++ b/website_floating_whatsapp_icon/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/website_floating_whatsapp_icon/views/portal_whatsapp_view.xml b/website_floating_whatsapp_icon/views/portal_whatsapp_view.xml new file mode 100644 index 000000000..febb61aa3 --- /dev/null +++ b/website_floating_whatsapp_icon/views/portal_whatsapp_view.xml @@ -0,0 +1,12 @@ + + + + \ No newline at end of file diff --git a/website_floating_whatsapp_icon/views/website_inherited.xml b/website_floating_whatsapp_icon/views/website_inherited.xml new file mode 100644 index 000000000..e1c00b442 --- /dev/null +++ b/website_floating_whatsapp_icon/views/website_inherited.xml @@ -0,0 +1,13 @@ + + + + website.form.inherit + website + + + + + + + + \ No newline at end of file