diff --git a/fb_messenger/README.rst b/fb_messenger/README.rst new file mode 100755 index 000000000..4d474cfb2 --- /dev/null +++ b/fb_messenger/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 + +Facebook Messenger Chat in Website +================================== +This Module Allow to Use Facebook Messenger Chat in Website. + +Configuration +============= +Create a Facebook Messenger Page for Messenger URL and add the Website Domain to Access the Messenger on that Website. + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +Developer: (V15) Ayana KP, 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/fb_messenger/__init__.py b/fb_messenger/__init__.py new file mode 100644 index 000000000..d18ecf601 --- /dev/null +++ b/fb_messenger/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023 -TODAY Cybrosys Technologies(). +# Author: Ayana KP (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import models diff --git a/fb_messenger/__manifest__.py b/fb_messenger/__manifest__.py new file mode 100644 index 000000000..00f9f129e --- /dev/null +++ b/fb_messenger/__manifest__.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ayana KP (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': "Facebook Messenger Chat in Website", + 'version': '15.0.1.0.0', + 'category': 'Marketing', + 'summary': """This Module Allow to Use Facebook Messenger Chat in Website""", + 'description': """This Module Helps Your Customers to " + "Contact You Using Facebook Messenger Chat in Website""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['website_sale'], + 'data': [ + 'views/res_config_settings_views.xml', + 'views/fb_chatter_templates.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/fb_messenger/doc/RELEASE_NOTES.md b/fb_messenger/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..dd5372147 --- /dev/null +++ b/fb_messenger/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 27.11.2023 +#### Version 15.0.1.0.0 +#### ADD +- Initial commit for Facebook Messenger Chat in Website diff --git a/fb_messenger/models/__init__.py b/fb_messenger/models/__init__.py new file mode 100644 index 000000000..3e72c1af8 --- /dev/null +++ b/fb_messenger/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ayana KP (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import res_config_settings +from . import website diff --git a/fb_messenger/models/res_config_settings.py b/fb_messenger/models/res_config_settings.py new file mode 100644 index 000000000..f9bf672ce --- /dev/null +++ b/fb_messenger/models/res_config_settings.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ayana KP (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 ResConfigSettings(models.TransientModel): + """ Inheriting configuration settings fields """ + _inherit = 'res.config.settings' + + enable_messenger = fields.Boolean(string="Enable Messenger", + related="website_id.enable_messenger", + help="Enable for show page id field", + readonly=False) + fb_id_page = fields.Char(string="Facebook Page Id", + related="website_id.fb_id_page", + help="To add facebook page id", readonly=False) diff --git a/fb_messenger/models/website.py b/fb_messenger/models/website.py new file mode 100644 index 000000000..9223cfd20 --- /dev/null +++ b/fb_messenger/models/website.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ayana KP (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 Website(models.Model): + """ Inheriting website to add fields for integrating messenger """ + _inherit = "website" + + enable_messenger = fields.Boolean(string="Enable Messenger", + help="Enable for show page id field") + fb_id_page = fields.Char(string="Facebook Page Id", + help="To add facebook page id") diff --git a/fb_messenger/static/description/assets/icons/check.png b/fb_messenger/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/fb_messenger/static/description/assets/icons/check.png differ diff --git a/fb_messenger/static/description/assets/icons/chevron.png b/fb_messenger/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/fb_messenger/static/description/assets/icons/chevron.png differ diff --git a/fb_messenger/static/description/assets/icons/cogs.png b/fb_messenger/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/fb_messenger/static/description/assets/icons/cogs.png differ diff --git a/fb_messenger/static/description/assets/icons/consultation.png b/fb_messenger/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/fb_messenger/static/description/assets/icons/consultation.png differ diff --git a/fb_messenger/static/description/assets/icons/ecom-black.png b/fb_messenger/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/fb_messenger/static/description/assets/icons/ecom-black.png differ diff --git a/fb_messenger/static/description/assets/icons/education-black.png b/fb_messenger/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/fb_messenger/static/description/assets/icons/education-black.png differ diff --git a/fb_messenger/static/description/assets/icons/hotel-black.png b/fb_messenger/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/fb_messenger/static/description/assets/icons/hotel-black.png differ diff --git a/fb_messenger/static/description/assets/icons/license.png b/fb_messenger/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/fb_messenger/static/description/assets/icons/license.png differ diff --git a/fb_messenger/static/description/assets/icons/lifebuoy.png b/fb_messenger/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/fb_messenger/static/description/assets/icons/lifebuoy.png differ diff --git a/fb_messenger/static/description/assets/icons/manufacturing-black.png b/fb_messenger/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/fb_messenger/static/description/assets/icons/manufacturing-black.png differ diff --git a/fb_messenger/static/description/assets/icons/pos-black.png b/fb_messenger/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/fb_messenger/static/description/assets/icons/pos-black.png differ diff --git a/fb_messenger/static/description/assets/icons/puzzle.png b/fb_messenger/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/fb_messenger/static/description/assets/icons/puzzle.png differ diff --git a/fb_messenger/static/description/assets/icons/restaurant-black.png b/fb_messenger/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/fb_messenger/static/description/assets/icons/restaurant-black.png differ diff --git a/fb_messenger/static/description/assets/icons/service-black.png b/fb_messenger/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/fb_messenger/static/description/assets/icons/service-black.png differ diff --git a/fb_messenger/static/description/assets/icons/trading-black.png b/fb_messenger/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/fb_messenger/static/description/assets/icons/trading-black.png differ diff --git a/fb_messenger/static/description/assets/icons/training.png b/fb_messenger/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/fb_messenger/static/description/assets/icons/training.png differ diff --git a/fb_messenger/static/description/assets/icons/update.png b/fb_messenger/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/fb_messenger/static/description/assets/icons/update.png differ diff --git a/fb_messenger/static/description/assets/icons/user.png b/fb_messenger/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/fb_messenger/static/description/assets/icons/user.png differ diff --git a/fb_messenger/static/description/assets/icons/wrench.png b/fb_messenger/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/fb_messenger/static/description/assets/icons/wrench.png differ diff --git a/fb_messenger/static/description/assets/misc/categories.png b/fb_messenger/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/fb_messenger/static/description/assets/misc/categories.png differ diff --git a/fb_messenger/static/description/assets/misc/check-box.png b/fb_messenger/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/fb_messenger/static/description/assets/misc/check-box.png differ diff --git a/fb_messenger/static/description/assets/misc/compass.png b/fb_messenger/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/fb_messenger/static/description/assets/misc/compass.png differ diff --git a/fb_messenger/static/description/assets/misc/corporate.png b/fb_messenger/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/fb_messenger/static/description/assets/misc/corporate.png differ diff --git a/fb_messenger/static/description/assets/misc/customer-support.png b/fb_messenger/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/fb_messenger/static/description/assets/misc/customer-support.png differ diff --git a/fb_messenger/static/description/assets/misc/cybrosys-logo.png b/fb_messenger/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/fb_messenger/static/description/assets/misc/cybrosys-logo.png differ diff --git a/fb_messenger/static/description/assets/misc/features.png b/fb_messenger/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/fb_messenger/static/description/assets/misc/features.png differ diff --git a/fb_messenger/static/description/assets/misc/logo.png b/fb_messenger/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/fb_messenger/static/description/assets/misc/logo.png differ diff --git a/fb_messenger/static/description/assets/misc/pictures.png b/fb_messenger/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/fb_messenger/static/description/assets/misc/pictures.png differ diff --git a/fb_messenger/static/description/assets/misc/pie-chart.png b/fb_messenger/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/fb_messenger/static/description/assets/misc/pie-chart.png differ diff --git a/fb_messenger/static/description/assets/misc/right-arrow.png b/fb_messenger/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/fb_messenger/static/description/assets/misc/right-arrow.png differ diff --git a/fb_messenger/static/description/assets/misc/star.png b/fb_messenger/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/fb_messenger/static/description/assets/misc/star.png differ diff --git a/fb_messenger/static/description/assets/misc/support.png b/fb_messenger/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/fb_messenger/static/description/assets/misc/support.png differ diff --git a/fb_messenger/static/description/assets/misc/whatsapp.png b/fb_messenger/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/fb_messenger/static/description/assets/misc/whatsapp.png differ diff --git a/fb_messenger/static/description/assets/modules/module_image (10).png b/fb_messenger/static/description/assets/modules/module_image (10).png new file mode 100644 index 000000000..5c172b9ab Binary files /dev/null and b/fb_messenger/static/description/assets/modules/module_image (10).png differ diff --git a/fb_messenger/static/description/assets/modules/module_image (11).png b/fb_messenger/static/description/assets/modules/module_image (11).png new file mode 100644 index 000000000..5c172b9ab Binary files /dev/null and b/fb_messenger/static/description/assets/modules/module_image (11).png differ diff --git a/fb_messenger/static/description/assets/modules/module_image (12).png b/fb_messenger/static/description/assets/modules/module_image (12).png new file mode 100644 index 000000000..5856d1b7e Binary files /dev/null and b/fb_messenger/static/description/assets/modules/module_image (12).png differ diff --git a/fb_messenger/static/description/assets/modules/module_image (7).png b/fb_messenger/static/description/assets/modules/module_image (7).png new file mode 100644 index 000000000..94318a840 Binary files /dev/null and b/fb_messenger/static/description/assets/modules/module_image (7).png differ diff --git a/fb_messenger/static/description/assets/modules/module_image (8).png b/fb_messenger/static/description/assets/modules/module_image (8).png new file mode 100644 index 000000000..bf93d4f80 Binary files /dev/null and b/fb_messenger/static/description/assets/modules/module_image (8).png differ diff --git a/fb_messenger/static/description/assets/modules/module_image (9).png b/fb_messenger/static/description/assets/modules/module_image (9).png new file mode 100644 index 000000000..4bec075eb Binary files /dev/null and b/fb_messenger/static/description/assets/modules/module_image (9).png differ diff --git a/fb_messenger/static/description/assets/screenshots/12.png b/fb_messenger/static/description/assets/screenshots/12.png new file mode 100644 index 000000000..e29720d01 Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/12.png differ diff --git a/fb_messenger/static/description/assets/screenshots/1_messengericon.png b/fb_messenger/static/description/assets/screenshots/1_messengericon.png new file mode 100644 index 000000000..d09a2e40b Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/1_messengericon.png differ diff --git a/fb_messenger/static/description/assets/screenshots/2_custlogin.png b/fb_messenger/static/description/assets/screenshots/2_custlogin.png new file mode 100644 index 000000000..89eb9be80 Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/2_custlogin.png differ diff --git a/fb_messenger/static/description/assets/screenshots/3_custchat.png b/fb_messenger/static/description/assets/screenshots/3_custchat.png new file mode 100644 index 000000000..da0e01d92 Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/3_custchat.png differ diff --git a/fb_messenger/static/description/assets/screenshots/4.png b/fb_messenger/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..3a675669b Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/4.png differ diff --git a/fb_messenger/static/description/assets/screenshots/4_customerend.png b/fb_messenger/static/description/assets/screenshots/4_customerend.png new file mode 100644 index 000000000..7db18a8a4 Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/4_customerend.png differ diff --git a/fb_messenger/static/description/assets/screenshots/5.png b/fb_messenger/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..f13f1e4b0 Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/5.png differ diff --git a/fb_messenger/static/description/assets/screenshots/6.png b/fb_messenger/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..c2b7bea8e Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/6.png differ diff --git a/fb_messenger/static/description/assets/screenshots/7.png b/fb_messenger/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..706521ced Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/7.png differ diff --git a/fb_messenger/static/description/assets/screenshots/7_idinsettings.png b/fb_messenger/static/description/assets/screenshots/7_idinsettings.png new file mode 100644 index 000000000..9da683421 Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/7_idinsettings.png differ diff --git a/fb_messenger/static/description/assets/screenshots/85b.png b/fb_messenger/static/description/assets/screenshots/85b.png new file mode 100644 index 000000000..1e3c1faf9 Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/85b.png differ diff --git a/fb_messenger/static/description/assets/screenshots/fb_scre_1.png b/fb_messenger/static/description/assets/screenshots/fb_scre_1.png new file mode 100644 index 000000000..13e5e4c7a Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/fb_scre_1.png differ diff --git a/fb_messenger/static/description/assets/screenshots/fbmessenger.png b/fb_messenger/static/description/assets/screenshots/fbmessenger.png new file mode 100644 index 000000000..934554428 Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/fbmessenger.png differ diff --git a/fb_messenger/static/description/assets/screenshots/hero.gif b/fb_messenger/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..bbf12959b Binary files /dev/null and b/fb_messenger/static/description/assets/screenshots/hero.gif differ diff --git a/fb_messenger/static/description/banner.png b/fb_messenger/static/description/banner.png new file mode 100644 index 000000000..c53411871 Binary files /dev/null and b/fb_messenger/static/description/banner.png differ diff --git a/fb_messenger/static/description/icon.png b/fb_messenger/static/description/icon.png new file mode 100644 index 000000000..762b59613 Binary files /dev/null and b/fb_messenger/static/description/icon.png differ diff --git a/fb_messenger/static/description/index.html b/fb_messenger/static/description/index.html new file mode 100644 index 000000000..030e97ac1 --- /dev/null +++ b/fb_messenger/static/description/index.html @@ -0,0 +1,669 @@ +
+ +
+ +
+
+ Odoo sh +
+
+
+ +
+
+
+ +

+ Facebook Messenger Chat in Website +

+

+ Clients Interaction + Through Facebook Messenger

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

+ Explore This + Module

+
+ + + +
+
+ +
+

+ Overview +

+
+
+
+ Facebook messenger chat on the website helps the clients to discuss + their questions and queries.
+
+ +
+ + +
+
+ +
+

+ Features +

+
+
+
+
+ + An Effective Public Relations Platform. +
+
+
+
+ + Facebook Users Data Can be Stored in Odoo. +
+
+ + The Public Can Chat With Odoo Users Directly Using the Messenger Chat. +
+
+ + Establish a Social Relationship with Clients. +
+
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+
+

+ Create a Meta Business Account

+

Create meta business account using the link + Meta Business Suite , the + click on Get started button

+ +
+
+

Create facebook page and fill all necessary details.After creating page, Goto the messenger of facebook page.

+ +
+
+

Go to the Settings of the messenger inbox.

+ +
+
+

Copy the messenger URL

+ +
+
+

+ Add facebook messenger URL in website configuration + settings

+ +
+
+

+ In the chat plugins, Add website domains

+ +
+
+

+ Choose a setup method

+ +
+
+

+ Give the domain name of our odoo website

+ +
+
+

+ Finish the setup

+ +
+
+

+ Clickable messenger + icon on website + +

+ +
+
+

+ Customers need to log + in or continue with their Facebook accounts +

+ +
+
+

+ Customers can chat + and we can reply to them

+ +
+
+

+ Customers have + options to continue/end with a chat

+ +
+
+
+ + +
+
+ +
+

+ Related + Products +

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

+ Our Services +

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

+ Our + Industries +

+
+
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

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

+ Mobile + friendly, + awe-inspiring product pages

+
+
+
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + +
+
+ +
+

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/fb_messenger/views/fb_chatter_templates.xml b/fb_messenger/views/fb_chatter_templates.xml new file mode 100644 index 000000000..5a72f7633 --- /dev/null +++ b/fb_messenger/views/fb_chatter_templates.xml @@ -0,0 +1,40 @@ + + + + + diff --git a/fb_messenger/views/res_config_settings_views.xml b/fb_messenger/views/res_config_settings_views.xml new file mode 100644 index 000000000..96c819ceb --- /dev/null +++ b/fb_messenger/views/res_config_settings_views.xml @@ -0,0 +1,42 @@ + + + + + res.config.settings.view.form.inherit.fb.messenger + res.config.settings + + + + +

FB Messenger Chat

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