diff --git a/odoo_zoom_meet_integration/README.rst b/odoo_zoom_meet_integration/README.rst new file mode 100755 index 000000000..fa9461177 --- /dev/null +++ b/odoo_zoom_meet_integration/README.rst @@ -0,0 +1,50 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Odoo Zoom Meet Integration +========================== +Integrates Odoo Calender module with Zoom. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (LGPL v3). +https://www.gnu.org/licenses/lgpl-3.0-standalone.html + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer:(V16) Unnimaya C O, 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/odoo_zoom_meet_integration/__init__.py b/odoo_zoom_meet_integration/__init__.py new file mode 100644 index 000000000..6ac10e98d --- /dev/null +++ b/odoo_zoom_meet_integration/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import controllers +from . import models diff --git a/odoo_zoom_meet_integration/__manifest__.py b/odoo_zoom_meet_integration/__manifest__.py new file mode 100644 index 000000000..af6273f9f --- /dev/null +++ b/odoo_zoom_meet_integration/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +################################################################################ +{ + 'name': "Odoo Zoom Meet Integration", + 'version': '16.0.1.0.0', + "category": 'Productivity, Extra Tools', + 'summary': """Integrates Odoo Calender module with Zoom.""", + 'description': """The Zoom Meeting integration module is a valuable tool + designed to seamlessly bridge the gap between Odoo Calendar and Zoom, + offering users a streamlined way to enhance their scheduling and + communication experience. With this integration, you can unlock a range + of benefits that make your workflow more efficient and productive.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['calendar'], + 'data': [ + 'views/calendar_event_views.xml', + 'views/res_company_views.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': "LGPL-3", + 'installable': True, + 'auto_install': False, + 'application': False +} diff --git a/odoo_zoom_meet_integration/controllers/__init__.py b/odoo_zoom_meet_integration/controllers/__init__.py new file mode 100644 index 000000000..ff077252e --- /dev/null +++ b/odoo_zoom_meet_integration/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import odoo_zoom_meet_integration diff --git a/odoo_zoom_meet_integration/controllers/odoo_zoom_meet_integration.py b/odoo_zoom_meet_integration/controllers/odoo_zoom_meet_integration.py new file mode 100644 index 000000000..d87db7f69 --- /dev/null +++ b/odoo_zoom_meet_integration/controllers/odoo_zoom_meet_integration.py @@ -0,0 +1,69 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +################################################################################ +import base64 +import datetime +import requests +from odoo import fields, http, _ +from odoo.http import request +from odoo.exceptions import ValidationError + + +class ZoomMeetAuth(http.Controller): + """ This controller is responsible for the authentication of + connection from Odoo to Zoom""" + + @http.route('/zoom_meet_authentication', type="http", auth="public", + website=True) + def get_auth_code(self, **kw): + """Authentication for connecting Odoo with Zoom""" + company_id = http.request.env['res.users'].sudo().browse( + request.uid).company_id + if kw.get('code'): + company_id.write( + {'zoom_company_authorization_code': kw.get('code')}) + data = { + 'code': kw.get('code'), + 'redirect_uri': company_id.zoom_redirect_uri, + 'grant_type': 'authorization_code' + } + response = requests.post( + 'https://zoom.us/oauth/token', data=data, + headers={ + 'Authorization': 'Basic ' + base64.b64encode(str( + company_id.zoom_client + ":" + + company_id.zoom_client_secret).encode('utf-8')).decode('utf-8'), + 'content-type': 'application/x-www-form-urlencoded'}) + if response.json() and response.json().get('access_token'): + company_id.write({ + 'zoom_company_access_token': + response.json().get('access_token'), + 'zoom_company_access_token_expiry': + fields.Datetime.now() + datetime.timedelta( + seconds=response.json().get('expires_in')), + 'zoom_company_refresh_token': + response.json().get('refresh_token'), + }) + return "Authentication Success. You can close this Window" + else: + raise ValidationError( + _('Something went wrong during the token generation.' + 'Your Authorization Code may be invalid')) diff --git a/odoo_zoom_meet_integration/doc/RELEASE_NOTES.md b/odoo_zoom_meet_integration/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..8a9495cab --- /dev/null +++ b/odoo_zoom_meet_integration/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 01.11.2023 +#### Version 16.0.1.0.0 +#### ADD + +- Initial commit for Odoo Zoom Meet Integration \ No newline at end of file diff --git a/odoo_zoom_meet_integration/models/__init__.py b/odoo_zoom_meet_integration/models/__init__.py new file mode 100644 index 000000000..1ee080404 --- /dev/null +++ b/odoo_zoom_meet_integration/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import calendar_event +from . import res_company diff --git a/odoo_zoom_meet_integration/models/calendar_event.py b/odoo_zoom_meet_integration/models/calendar_event.py new file mode 100644 index 000000000..fe7aad8fb --- /dev/null +++ b/odoo_zoom_meet_integration/models/calendar_event.py @@ -0,0 +1,144 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +################################################################################ +import json +import requests +from odoo import api, fields, models, _ +from odoo.exceptions import UserError, ValidationError + + +class CalendarEvent(models.Model): + """Inheriting Calendar events to create zoom meetings""" + _inherit = 'calendar.event' + + is_zoom_meet = fields.Boolean(string='Zoom Meet', + help='Enable, if zoom meeting.') + zoom_meet_url = fields.Char(string='Zoom Meet URL', + help='Zoom meeting join Rrl') + zoom_meet_code = fields.Char(string='Zoom Meet Code', + help='Joining meeting code') + zoom_event = fields.Char(string='Zoom Event ID', + help='Event ID of the Zoom meet') + description = fields.Text('Description', + states={'done': [('readonly', True)]}, + compute="_compute_description", store=True, + help='Description regarding the meeting') + + @api.depends('zoom_meet_code', 'zoom_meet_url') + def _compute_description(self): + for rec in self: + if rec.zoom_meet_code and rec.zoom_meet_url: + rec.description = ("Join the Zoom Meeting at " + + str(rec.zoom_meet_url) + + "using the Meeting code " + + str(rec.zoom_meet_code)) + + @api.model_create_multi + def create(self, vals): + """Supering for creating Zoom meetings""" + events = super(CalendarEvent, self).create(vals) + for event in events: + if event.is_zoom_meet: + self._create_zoom_meet(event) + return events + + def write(self, vals): + """Supering for enabling zoom meetings while editing""" + events = super(CalendarEvent, self).write(vals) + for event in self: + if event.is_zoom_meet: + if not event.zoom_event: + self._create_zoom_meet(event) + return events + + @api.onchange("is_zoom_meet") + def _onchange_is_zoom_meet(self): + """Delete a meeting from Zoom""" + if not self.is_zoom_meet and self.zoom_event: + header = { + 'Authorization': + 'Bearer %s' % self.env['res.users'].browse( + self._context.get( + 'uid')).company_id.zoom_company_access_token, + 'Content-Type': 'application/json'} + response = requests.delete( + 'https://api.zoom.us/v2/meetings/%s' % self.zoom_event, + headers=header) + if response.status_code == 401: + raise UserError(_("Token expired, Please refresh token")) + self.zoom_meet_url = '' + self.zoom_meet_code = '' + self.zoom_event = '' + + def action_zoom_meet_url(self): + """Join Zoom meeting from Odoo""" + return { + 'type': 'ir.actions.act_url', + 'target': 'new', + 'url': self.zoom_meet_url, + } + + def _create_zoom_meet(self, event): + """Method for creating Zoom meeting""" + timezone = self._context.get( + 'tz') or self.env.user.partner_id.tz or 'UTC' + self_tz = self.with_context(tz=timezone) + payload = json.dumps({ + "start_time": fields.Datetime.context_timestamp(self_tz, + fields.Datetime.from_string(event.start)).isoformat(), + "timezone": self._context.get('tz') or self.env.user.partner_id.tz or 'UTC', + "topic": event.name, + "duration": int(event.duration * 60) + }) + headers = { + 'Authorization': 'Bearer %s' % self.env['res.users'].browse( + self._context.get('uid')).company_id.zoom_company_access_token, + 'Content-Type': 'application/json', + 'Accept': 'application/json' + } + response = requests.request( + "POST", "https://api.zoom.us/v2/users/me/meetings", + headers=headers, data=payload) + if response.json().get('code') == 124: + raise UserError(_("Token expired. Please refresh the token")) + if response.json().get('start_url'): + event.zoom_event = response.json()['id'] + event.zoom_meet_url = response.json()['join_url'] + event.zoom_meet_code = response.json()['id'] + else: + raise ValidationError(response.json()['message']) + + def unlink(self): + """Delete Zoom meet with unlink method""" + for event in self: + if event.is_zoom_meet and event.zoom_event: + header = { + 'Authorization': + 'Bearer %s' % self.env['res.users'].browse( + self._context.get( + 'uid')).company_id.zoom_company_access_token, + 'Content-Type': 'application/json'} + response = requests.delete( + 'https://api.zoom.us/v2/meetings/%s' % event.zoom_event, + headers=header) + if response.status_code == 401: + raise UserError(_("Token Expired, please refresh token")) + return super().unlink() diff --git a/odoo_zoom_meet_integration/models/res_company.py b/odoo_zoom_meet_integration/models/res_company.py new file mode 100644 index 000000000..be6044595 --- /dev/null +++ b/odoo_zoom_meet_integration/models/res_company.py @@ -0,0 +1,108 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +################################################################################ +import base64 +import requests +from odoo import fields, models, _ +from odoo.exceptions import ValidationError + + +class ResCompany(models.Model): + """Inheriting company model for configuring Zoom Odoo connector""" + _inherit = "res.company" + + zoom_client = fields.Char( + string="Client ID", help='Zoom developer console client Id') + zoom_client_secret = fields.Char( + string="Client Secret", help='Zoom developer console client secret') + zoom_redirect_uri = fields.Char( + string="Authorized Redirect URI", + compute='_compute_zoom_redirect_url', + help='This should be added as Redirect URL for OAuth in Zoom') + zoom_company_access_token = fields.Char(string='Access Token', + copy=False, + help='Access token for ' + 'respective company') + zoom_company_access_token_expiry = fields.Datetime( + string='Token expiry', help='Access token expiration') + zoom_company_refresh_token = fields.Char(string='Refresh Token', + copy=False, + help='Refresh token for ' + 'respective company') + zoom_company_authorization_code = fields.Char(string="Authorization Code", + help='Authorization Code ' + 'for respective company') + + def _compute_zoom_redirect_url(self): + """Method for computing the value of field zoom_redirect_url""" + for record in self: + record.zoom_redirect_uri = (self.env[ + 'ir.config_parameter'].sudo(). + get_param( + 'web.base.url') + '/zoom_meet_authentication') + + def action_zoom_meet_company_authenticate(self): + """Authentication for zoom""" + if not self.zoom_client: + raise ValidationError("Please Enter Client ID") + if not self.zoom_redirect_uri: + raise ValidationError("Please Enter Client Secret") + return { + "type": 'ir.actions.act_url', + "url": ( + "https://zoom.us/oauth/authorize?response_type=code" + "&client_id={}&redirect_uri={}" + ).format(self.zoom_client, self.zoom_redirect_uri), + "target": "current" + } + + def action_zoom_meet_company_refresh_token(self): + """Generate refresh token""" + if not self.zoom_client: + raise ValidationError( + _('Client ID is not yet configured.')) + if not self.zoom_client_secret: + raise ValidationError( + _('Client Secret is not yet configured.')) + if not self.zoom_company_refresh_token: + raise ValidationError( + _('Refresh Token is not yet configured.')) + data = { + 'refresh_token': self.zoom_company_refresh_token, + 'grant_type': 'refresh_token', + } + response = requests.post( + 'https://zoom.us/oauth/token', data=data, + headers={ + 'Authorization': 'Basic ' + base64.b64encode(str( + self.zoom_client + ":" + self.zoom_client_secret).encode( + 'utf-8')).decode('utf-8'), + 'content-type': 'application/x-www-form-urlencoded'}, + timeout=20) + if response.json() and response.json().get('access_token'): + self.write({ + 'zoom_company_access_token': + response.json().get('access_token'), + }) + else: + raise ValidationError( + _('Something went wrong during the token generation.' + 'Please request for an authorization code again.')) diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/check.png b/odoo_zoom_meet_integration/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/check.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/chevron.png b/odoo_zoom_meet_integration/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/chevron.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/cogs.png b/odoo_zoom_meet_integration/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/cogs.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/consultation.png b/odoo_zoom_meet_integration/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/consultation.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/ecom-black.png b/odoo_zoom_meet_integration/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/ecom-black.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/education-black.png b/odoo_zoom_meet_integration/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/education-black.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/hotel-black.png b/odoo_zoom_meet_integration/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/hotel-black.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/license.png b/odoo_zoom_meet_integration/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/license.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/lifebuoy.png b/odoo_zoom_meet_integration/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/lifebuoy.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/logo.png b/odoo_zoom_meet_integration/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/logo.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/manufacturing-black.png b/odoo_zoom_meet_integration/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/manufacturing-black.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/pos-black.png b/odoo_zoom_meet_integration/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/pos-black.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/puzzle.png b/odoo_zoom_meet_integration/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/puzzle.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/restaurant-black.png b/odoo_zoom_meet_integration/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/restaurant-black.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/service-black.png b/odoo_zoom_meet_integration/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/service-black.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/trading-black.png b/odoo_zoom_meet_integration/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/trading-black.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/training.png b/odoo_zoom_meet_integration/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/training.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/update.png b/odoo_zoom_meet_integration/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/update.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/user.png b/odoo_zoom_meet_integration/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/user.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/wrench.png b/odoo_zoom_meet_integration/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/wrench.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/categories.png b/odoo_zoom_meet_integration/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/categories.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/check-box.png b/odoo_zoom_meet_integration/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/check-box.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/compass.png b/odoo_zoom_meet_integration/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/compass.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/corporate.png b/odoo_zoom_meet_integration/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/corporate.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/customer-support.png b/odoo_zoom_meet_integration/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/customer-support.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/cybrosys-logo.png b/odoo_zoom_meet_integration/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/cybrosys-logo.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/features.png b/odoo_zoom_meet_integration/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/features.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/logo.png b/odoo_zoom_meet_integration/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/logo.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/pictures.png b/odoo_zoom_meet_integration/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/pictures.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/pie-chart.png b/odoo_zoom_meet_integration/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/pie-chart.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/right-arrow.png b/odoo_zoom_meet_integration/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/right-arrow.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/star.png b/odoo_zoom_meet_integration/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/star.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/support.png b/odoo_zoom_meet_integration/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/support.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/whatsapp.png b/odoo_zoom_meet_integration/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/whatsapp.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/l1.png b/odoo_zoom_meet_integration/static/description/assets/modules/l1.png new file mode 100644 index 000000000..49ca9ec8e Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/l1.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/l2.png b/odoo_zoom_meet_integration/static/description/assets/modules/l2.png new file mode 100644 index 000000000..06923c110 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/l2.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/l3.png b/odoo_zoom_meet_integration/static/description/assets/modules/l3.png new file mode 100644 index 000000000..9cfe5b521 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/l3.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/l4.png b/odoo_zoom_meet_integration/static/description/assets/modules/l4.png new file mode 100644 index 000000000..f390259e3 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/l4.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/l5.png b/odoo_zoom_meet_integration/static/description/assets/modules/l5.png new file mode 100644 index 000000000..5a41fd638 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/l5.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/l6.png b/odoo_zoom_meet_integration/static/description/assets/modules/l6.png new file mode 100644 index 000000000..e343e3bed Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/l6.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot2.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot2.png new file mode 100644 index 000000000..02b7c1b33 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot2.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot3.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot3.png new file mode 100644 index 000000000..c7cb9d07a Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot3.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot4.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot4.png new file mode 100644 index 000000000..9e69704de Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot4.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot5.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot5.png new file mode 100644 index 000000000..a83395ae1 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot5.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot6.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot6.png new file mode 100644 index 000000000..f7dee3c2a Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/Screenshot6.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/Zoom5.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/Zoom5.png new file mode 100644 index 000000000..5d28a1236 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/Zoom5.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/hero.gif b/odoo_zoom_meet_integration/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..d13242bad Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/hero.gif differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/scope.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/scope.png new file mode 100644 index 000000000..cd8e473a2 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/scope.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/screenshot1.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/screenshot1.png new file mode 100644 index 000000000..e482cdca7 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/screenshot1.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/zoom1.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/zoom1.png new file mode 100644 index 000000000..33f6a0b2b Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/zoom1.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/zoom3.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/zoom3.png new file mode 100644 index 000000000..1317b8c48 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/zoom3.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/zoom4.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/zoom4.png new file mode 100644 index 000000000..ac3f9c6f2 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/zoom4.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/zoom7.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/zoom7.png new file mode 100644 index 000000000..f29a767f8 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/zoom7.png differ diff --git a/odoo_zoom_meet_integration/static/description/banner.jpg b/odoo_zoom_meet_integration/static/description/banner.jpg new file mode 100644 index 000000000..fabc231ab Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/banner.jpg differ diff --git a/odoo_zoom_meet_integration/static/description/icon.png b/odoo_zoom_meet_integration/static/description/icon.png new file mode 100644 index 000000000..6fbf3cf68 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/icon.png differ diff --git a/odoo_zoom_meet_integration/static/description/index.html b/odoo_zoom_meet_integration/static/description/index.html new file mode 100644 index 000000000..fa3b61c00 --- /dev/null +++ b/odoo_zoom_meet_integration/static/description/index.html @@ -0,0 +1,659 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ + +

+ Odoo Zoom Meet Integration

+

+ This Module Integrates Odoo Calendar Module With Zoom

+ + +
+ +
+
+ +
+

+ Explore This + Module

+
+ + + +
+
+ +
+

+ Overview +

+
+
+
+ The Zoom Meeting integration module is a valuable tool designed to + seamlessly bridge the gap between Odoo Calendar and Zoom, offering users + a streamlined way to enhance their scheduling and communication + experience. With this integration, you can unlock a range of benefits + that make your workflow more efficient and productive. +
+
+ + +
+
+ +
+

+ Features +

+
+
+
+
+ + Create Zoom Meetings from Odoo Calendar +
+
+ + Send a Zoom Meeting invitation email to event + attendees +
+
+ + Join Zoom meeting from Zoom meet tab +
+
+ + Delete Scheduled meetings in Zoom from Odoo +
+
+
+ + +
+
+ +
+

+ Screenshots +

+
+
+
+

+ Login to Zoom App + Marketplace + account then click on the Develop button and select Build App.

+ +
+
+

+ Click the Create button on OAuth tab.

+ +
+
+

+ Fill the App Name field and click Create. +

+ +
+
+

+ You can see the Client ID and Client Secret here. Add the + Redirect URL for OAuth as your Base url+ + /zoom_meet_authentication

+ +
+
+

+ Add Redirect URL for OAuth to Add Allow List +

+ +
+
+

+ Click Add Scopes button under Scopes.

+ +
+
+

+ Select all scopes under Meeting.

+ +
+
+

+ Add Credentials and click AUTHENTICATE.

+ +
+
+

+ Click Allow button.

+

+ You will be redirected to a success page. Then close the page.

+ +
+
+

+ Create new Meeting. Enable Zoom Meet. +

+ +
+
+

+ you can see the Zoom Meet URL and Zoom Meet Code here.

+

+ It is possible to join the Zoom meet directly by clicking JOIN + MEETING button. +

+ +
+
+

+ The Meeting data is also available at Meetings tab of Zoom

+ +
+
+ + +
+
+ +
+

+ 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

+
+
+
+
+
+
+
+ +
+
+
+ diff --git a/odoo_zoom_meet_integration/views/calendar_event_views.xml b/odoo_zoom_meet_integration/views/calendar_event_views.xml new file mode 100644 index 000000000..5ef1957b2 --- /dev/null +++ b/odoo_zoom_meet_integration/views/calendar_event_views.xml @@ -0,0 +1,45 @@ + + + + + + calendar.event.view.form.inherit.odoo.zoom.meet.integration + + calendar.event + + + + + + + + + + + + +