diff --git a/odoo_zoom_meet_integration/README.rst b/odoo_zoom_meet_integration/README.rst new file mode 100755 index 000000000..6c718c561 --- /dev/null +++ b/odoo_zoom_meet_integration/README.rst @@ -0,0 +1,49 @@ +.. 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 + +Odoo Zoom Meet Integration +=========================== +* Integrates Odoo calender module with Zoom. + +Installation +============ + - www.odoo.com/documentation/17.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer: (V15): Aswani + (V17) : Gayathri V +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 https://www.cybrosys.com + +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..8149d21bf --- /dev/null +++ b/odoo_zoom_meet_integration/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V(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 controller +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..ce3c0cec0 --- /dev/null +++ b/odoo_zoom_meet_integration/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V(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': "Odoo Zoom Meet Integration", + 'version': '17.0.1.0.0', + "category": 'Extra Tools', + 'summary': """Integrates odoo calender module with Zoom.""", + 'description': """Integrates odoo calender module with Zoom and helps to + create meetings from odoo in zoom.Allows sending meeting invitations and + removes deleted zoom meetings from Odoo""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['contacts', 'calendar'], + 'data': [ + 'views/calendar_event_views.xml', + 'views/res_company_views.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': "AGPL-3", + 'installable': True, + 'auto_install': False, + 'application': False +} diff --git a/odoo_zoom_meet_integration/controller/__init__.py b/odoo_zoom_meet_integration/controller/__init__.py new file mode 100644 index 000000000..0b29026bb --- /dev/null +++ b/odoo_zoom_meet_integration/controller/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V(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 odoo_zoom_meet_integration diff --git a/odoo_zoom_meet_integration/controller/odoo_zoom_meet_integration.py b/odoo_zoom_meet_integration/controller/odoo_zoom_meet_integration.py new file mode 100644 index 000000000..094cef4e2 --- /dev/null +++ b/odoo_zoom_meet_integration/controller/odoo_zoom_meet_integration.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +import base64 +import datetime +import requests +from odoo import http, _ +from odoo.http import request +from odoo.exceptions import UserError + + +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 to Zoom""" + user_id = request.uid + company_id = http.request.env['res.users'].sudo().browse( + user_id).company_id + if kw.get('code'): + company_id.write( + {'zoom_company_authorization_code': kw.get('code')}) + client_id = company_id.zoom_client + client_secret = company_id.zoom_client_secret + redirect_uri = company_id.zoom_redirect_uri + data = { + 'code': kw.get('code'), + 'redirect_uri': redirect_uri, + 'grant_type': 'authorization_code' + } + b64 = str( + client_id + ":" + client_secret).encode( + 'utf-8') + b64 = base64.b64encode(b64).decode('utf-8') + response = requests.post( + 'https://zoom.us/oauth/token', data=data, + headers={ + 'Authorization': 'Basic ' + b64, + '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': + datetime.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 UserError( + _('Something went wrong during the token generation.' + 'Maybe your Authorization Code is 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..3a52ede9c --- /dev/null +++ b/odoo_zoom_meet_integration/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 11.01.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Odoo Zoom Meet Integration diff --git a/odoo_zoom_meet_integration/models/__init__.py b/odoo_zoom_meet_integration/models/__init__.py new file mode 100644 index 000000000..f9d4bab90 --- /dev/null +++ b/odoo_zoom_meet_integration/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V(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 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..b861dba26 --- /dev/null +++ b/odoo_zoom_meet_integration/models/calendar_event.py @@ -0,0 +1,160 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +import 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='To joining Meeting URL') + 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') + videocall_location = fields.Char('Meeting URL', related='zoom_meet_url') + description = fields.Text('Description', + states={'done': [('readonly', True)]}, + compute="_compute_description", store=True) + + @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) + + def action_zoom_meet_url(self): + """Join zoom from Odoo""" + meet_url = self.zoom_meet_url + if meet_url: + url = self.zoom_meet_url + else: + url = 'https://api.zoom.us/v2/' + return { + 'type': 'ir.actions.act_url', + 'target': 'new', + 'url': url, + } + + @api.model_create_multi + def create(self, vals): + """Supering for creating Zoom meetings""" + events = super().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().write(vals) + for event in self: + if event.is_zoom_meet: + if not event.zoom_event: + self._create_zoom_meet(event) + return events + + def _create_zoom_meet(self, cal_event): + """Creating Zoom meeting from odoo in Zoom""" + url = "https://api.zoom.us/v2/users/me/meetings" + current_uid = self._context.get('uid') + user_id = self.env['res.users'].browse(current_uid) + company_id = user_id.company_id + duration = cal_event.duration * 60 + payload = json.dumps({ + "start_time": cal_event.start.isoformat(), + "timezone": 'UTC', + "topic": cal_event.name, + "duration": int(duration), + "settings": { + "email_notification": False, + "registrants_confirmation_email": False, + "registrants_email_notification": False, + "waiting_room": True, + "join_before_host": True, + "mute_participants_upon_entry": True + } + }) + headers = { + 'Authorization': 'Bearer %s' % company_id.zoom_company_access_token, + 'Content-Type': 'application/json', + 'Accept': 'application/json' + } + response = requests.request("POST", url, headers=headers, data=payload) + if response.json().get('code') == 124: + raise UserError(_("Token Expired, please refresh token")) + if response.json().get('start_url'): + cal_event.zoom_event = response.json()['id'] + cal_event.zoom_meet_url = response.json()['join_url'] + cal_event.zoom_meet_code = response.json()['id'] + else: + raise ValidationError("Failed to create Zoom event," + "Please check your authorization connection.") + + @api.onchange("is_zoom_meet") + def _onchange_is_zoom_meet(self): + """Delete a meeting from zoom """ + if not self.is_zoom_meet: + event_id = self.zoom_event + if event_id: + current_uid = self._context.get('uid') + user_id = self.env['res.users'].browse(current_uid) + company_id = user_id.company_id + url = 'https://api.zoom.us/v2/meetings/%s' % event_id + header = { + 'Authorization': + 'Bearer %s' % company_id.zoom_company_access_token, + 'Content-Type': 'application/json'} + response = requests.delete(url, 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 unlink(self): + """Delete Zoom meet with unlink method""" + for event in self: + if event.is_zoom_meet and event.zoom_event: + current_uid = self._context.get('uid') + user_id = self.env['res.users'].browse(current_uid) + company_id = user_id.company_id + url = 'https://api.zoom.us/v2/meetings/%s' % event.zoom_event + header = { + 'Authorization': + 'Bearer %s' % company_id.zoom_company_access_token, + 'Content-Type': 'application/json'} + response = requests.delete(url, headers=header) + if response.status_code == 401: + raise UserError(_("Token Expired, Please refresh token")) + events = super().unlink() + return events 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..ef52f5b3b --- /dev/null +++ b/odoo_zoom_meet_integration/models/res_company.py @@ -0,0 +1,109 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +import base64 +import requests +from odoo import fields, models, _ +from odoo.exceptions import UserError, ValidationError + +TIMEOUT = 20 + + +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 URIs", default="http://localhost:8017" + "/zoom_meet_authentication", + help='Zoom Authorized redirect URIs') + 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 action_zoom_meet_company_authenticate(self): + """Authentication for zoom""" + if not self.zoom_client: + raise ValidationError("Please Enter Client ID") + client_id = self.zoom_client + if not self.zoom_redirect_uri: + raise ValidationError("Please Enter Client Secret") + redirect_url = self.zoom_redirect_uri + url = ( + "https://zoom.us/oauth/authorize?response_type=code" + "&client_id={}&redirect_uri={}" + ).format(client_id, redirect_url) + return { + "type": 'ir.actions.act_url', + "url": url, + "target": "current" + } + + def action_zoom_meet_company_refresh_token(self): + """Generate refresh token""" + if not self.zoom_client: + raise UserError( + _('Client ID is not yet configured.')) + client_id = self.zoom_client + if not self.zoom_client_secret: + raise UserError( + _('Client Secret is not yet configured.')) + client_secret = self.zoom_client_secret + if not self.zoom_company_refresh_token: + raise UserError( + _('Refresh Token is not yet configured.')) + data = { + 'refresh_token': self.zoom_company_refresh_token, + 'grant_type': 'refresh_token', + } + b64_code = str( + client_id + ":" + client_secret).encode( + 'utf-8') + b64 = base64.b64encode(b64_code).decode('utf-8') + response = requests.post( + 'https://zoom.us/oauth/token', data=data, + headers={ + 'Authorization': 'Basic ' + b64, + 'content-type': 'application/x-www-form-urlencoded'}, + timeout=TIMEOUT) + if response.json() and response.json().get('access_token'): + self.write({ + 'zoom_company_access_token': + response.json().get('access_token'), + }) + else: + raise UserError( + _('Something went wrong during the token generation.' + ' Please request again an authorization code.')) diff --git a/odoo_zoom_meet_integration/static/description/assets/icons/capture (1).png b/odoo_zoom_meet_integration/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/capture (1).png differ 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/img.png b/odoo_zoom_meet_integration/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/img.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/photo-capture.png b/odoo_zoom_meet_integration/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/icons/photo-capture.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/Cybrosys R.png b/odoo_zoom_meet_integration/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/misc/Cybrosys R.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/email.svg b/odoo_zoom_meet_integration/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/odoo_zoom_meet_integration/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/phone.svg b/odoo_zoom_meet_integration/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/odoo_zoom_meet_integration/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + 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 (1) 2.svg b/odoo_zoom_meet_integration/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/odoo_zoom_meet_integration/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + 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 (1) 1.svg b/odoo_zoom_meet_integration/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/odoo_zoom_meet_integration/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/support-email.svg b/odoo_zoom_meet_integration/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/odoo_zoom_meet_integration/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + 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/tick-mark.svg b/odoo_zoom_meet_integration/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/odoo_zoom_meet_integration/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/odoo_zoom_meet_integration/static/description/assets/misc/whatsapp 1.svg b/odoo_zoom_meet_integration/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/odoo_zoom_meet_integration/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + 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/misc/whatsapp.svg b/odoo_zoom_meet_integration/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/odoo_zoom_meet_integration/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/1.gif b/odoo_zoom_meet_integration/static/description/assets/modules/1.gif new file mode 100644 index 000000000..8ac32db03 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/1.gif differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/1.png b/odoo_zoom_meet_integration/static/description/assets/modules/1.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/1.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/2.jpg b/odoo_zoom_meet_integration/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..a1dc39c89 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/2.jpg differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/2.png b/odoo_zoom_meet_integration/static/description/assets/modules/2.png new file mode 100644 index 000000000..2c8fbb83f Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/2.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/3.png b/odoo_zoom_meet_integration/static/description/assets/modules/3.png new file mode 100644 index 000000000..25ed3e0b6 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/3.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/4.png b/odoo_zoom_meet_integration/static/description/assets/modules/4.png new file mode 100644 index 000000000..bc5648b1a Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/4.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/5.png b/odoo_zoom_meet_integration/static/description/assets/modules/5.png new file mode 100644 index 000000000..7cc3625c7 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/5.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/6.png b/odoo_zoom_meet_integration/static/description/assets/modules/6.png new file mode 100644 index 000000000..745d6db78 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/6.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/banner.jpg b/odoo_zoom_meet_integration/static/description/assets/modules/banner.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/banner.jpg differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/budget_image.png b/odoo_zoom_meet_integration/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..b50130c7d Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/budget_image.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/credit_image.png b/odoo_zoom_meet_integration/static/description/assets/modules/credit_image.png new file mode 100644 index 000000000..3ad04ecfd Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/credit_image.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/employee_image.png b/odoo_zoom_meet_integration/static/description/assets/modules/employee_image.png new file mode 100644 index 000000000..30ad58232 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/employee_image.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/export_image.png b/odoo_zoom_meet_integration/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..492980ad0 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/export_image.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/gantt_image.png b/odoo_zoom_meet_integration/static/description/assets/modules/gantt_image.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/gantt_image.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/modules/quotation_image.png b/odoo_zoom_meet_integration/static/description/assets/modules/quotation_image.png new file mode 100644 index 000000000..499b1a72f Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/modules/quotation_image.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/1.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..43c4a394b Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/1.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/10.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..27961252d Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/10.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/11.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/11.png new file mode 100644 index 000000000..bfb82f604 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/11.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/12.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/12.png new file mode 100644 index 000000000..5bf139bea Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/12.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/13.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/13.png new file mode 100644 index 000000000..b4698df9b Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/13.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/2.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..192594168 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/2.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/3.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..23ed6fbef Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/3.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/4.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..e1ade5d87 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/4.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/5.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..6ebd8ca80 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/5.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/6.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..8e0a82c38 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/6.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/7.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..4ef78066e Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/7.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/8.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..697ef45d9 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/8.png differ diff --git a/odoo_zoom_meet_integration/static/description/assets/screenshots/9.png b/odoo_zoom_meet_integration/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..278c1f0a0 Binary files /dev/null and b/odoo_zoom_meet_integration/static/description/assets/screenshots/9.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..d0f9f8259 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/banner.jpg b/odoo_zoom_meet_integration/static/description/banner.jpg new file mode 100644 index 000000000..7c9a07c85 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..c95454f21 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..1e741bf52 --- /dev/null +++ b/odoo_zoom_meet_integration/static/description/index.html @@ -0,0 +1,915 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Odoo Zoom Meet Integration

+

+ This module integrates odoo calendar module with Zoom. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Create Zoom Meetings from Odoo Calendar.

+
+
+
+
+
+
+ +
+
+

+ Join Zoom Meeting From Zoom Meet Tab.

+
+
+
+
+
+
+ +
+
+

+ Send A Zoom Meeting Invitation Email To Event + Attendees.

+
+
+
+
+
+
+ +
+
+

+ Delete Scheduled meetings in Zoom from Odoo.

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

+ Configure Zoom App Marketplace.

+

+ Go to the link https://marketplace.zoom.us/ +

+
+
+
+
+
+
+ +
+
+

+ Create Oauth App

+

+ Go to Develop--> Build App

+

+ You Must sign in your Zoom account then only + you can visible this.

+ +
+
+
+
+
+
+ +
+
+

+ Establish your OAuth application by + generating a unique Client ID and Client + Secret. Additionally, configure the Redirect + URL to match your instance URL followed by + /zoom_meet_authentication. It is imperative + to accurately set the Redirect URL to + /zoom_meet_authentication for proper + functionality.

+
+
+
+
+
+
+ +
+
+

+ Scopes

+
+
+
+
+
+
+ +
+
+

+ Add All The Scopes For The Zoom App Which Is + Mandatory For The Meeting Creation As Shown + .

+
+
+
+
+
+
+ +
+
+

+ Go to Settings-> Companies Then Click On The + Company Name And Select The Zoom Meeting + Tab. Enter The Client id, Client Secret And + Redirect Url In Credentials.

+
+
+
+
+
+
+ +
+
+

+ Authentication Window.

+

+ After Click The Authenticate Button You Will + Redirect To Log In The Zoom.Then You Can Get + The Result Of Authentication.

+
+
+
+
+
+
+ +
+
+

+ After Successful Authentication, Now You Can + Create Zoom Meetings To Your Odoo + Calendar.

+
+
+
+
+
+
+ +
+
+

+ Create Meeting on the calendar module

+

+ When The Zoom Meet Checkbox Is Enabled, A + Zoom Meeting Link Is Generated.

+
+
+
+
+
+
+ +
+
+

+ By Clicking The Join Meeting Button, You Can + Also Join A Zoom Meeting.

+
+
+
+
+
+
+ +
+
+

+ Email The Meeting Information To All Event + Participants By Clicking The Button.

+
+
+
+
+
+
+ +
+
+

+ Email Template For The Meeting With Zoom + Link.

+
+
+
+
+
+
+ +
+
+

+ After You've Created The Meeting, You Can + View It In Zoom Scheduled Meetings.

+
+
+
+
+
+
+
    +
  • + Check Lists are + Assigned per each Opportunity Stage. +
  • +
  • + The App Lets + Assign Security Groups for Each Check List + Point. +
  • +
  • + To Move a CRM + Lead Forward in your Funnel, Its Checklist + should be fully Confirmed. +
  • +
  • + Check List + Actions are Saved in History. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:11th Jan 2024 +
+

+ + Initial Commit for CheckList & Approval Process + in CRM.

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + 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..972eb0b85 --- /dev/null +++ b/odoo_zoom_meet_integration/views/calendar_event_views.xml @@ -0,0 +1,58 @@ + + + + + + calendar.event.view.form.inherit.odoo.zoom.meet.integration + + calendar.event + + + + + + + + + + + + +