diff --git a/odoo_google_meet_integration/README.rst b/odoo_google_meet_integration/README.rst new file mode 100644 index 000000000..d9428ee85 --- /dev/null +++ b/odoo_google_meet_integration/README.rst @@ -0,0 +1,43 @@ +.. 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 + +Google Meet Calendar Integration +================================ +* A seamless integration solution for Google Meet within your calendar, +simplifying scheduling and access to virtual meetings. + +License +------- +General Public License, Version 3 (LGPL-3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer: (V17) Subina P, 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_google_meet_integration/__init__.py b/odoo_google_meet_integration/__init__.py new file mode 100644 index 000000000..50349d36a --- /dev/null +++ b/odoo_google_meet_integration/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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_google_meet_integration/__manifest__.py b/odoo_google_meet_integration/__manifest__.py new file mode 100644 index 000000000..43b19c2e1 --- /dev/null +++ b/odoo_google_meet_integration/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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': "Google Meet Calendar Integration", + 'version': '17.0.1.1.0', + "category": 'Productivity', + 'summary': """A seamless integration solution for Google Meet within your calendar, + simplifying scheduling and access to virtual meetings.""", + 'description': """Enhance your scheduling efficiency with the Google Meet + Calendar Integration.This feature-rich application streamlines the process of + integrating Google Meet links into your calendar events, ensuring a smooth + and hassle-free virtual meeting experience.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['contacts', 'calendar'], + 'data': [ + 'views/res_company_views.xml', + 'views/calendar_event_views.xml' + ], + 'images': ['static/description/banner.jpg'], + 'license': "LGPL-3", + 'installable': True, + 'auto_install': False, + 'application': False +} diff --git a/odoo_google_meet_integration/controllers/__init__.py b/odoo_google_meet_integration/controllers/__init__.py new file mode 100644 index 000000000..2d984fbf4 --- /dev/null +++ b/odoo_google_meet_integration/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Subina (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_google_meet_integration diff --git a/odoo_google_meet_integration/controllers/odoo_google_meet_integration.py b/odoo_google_meet_integration/controllers/odoo_google_meet_integration.py new file mode 100644 index 000000000..7c1c58ca7 --- /dev/null +++ b/odoo_google_meet_integration/controllers/odoo_google_meet_integration.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Subina (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 requests +import datetime +from odoo import http +from odoo import _ +from odoo.exceptions import UserError +from odoo.http import request + + +class GoogleMeetAuth(http.Controller): + """Controller handling Google Meet authentication for Odoo users.""" + @http.route('/google_meet_authentication', type="http", auth="public", + website=True) + def get_auth_code(self, **kw): + """ Retrieve the authentication code for Google Meet.""" + user_id = request.uid + company_id = http.request.env['res.users'].sudo().search( + [('id', '=', user_id)], limit=1).company_id + if kw.get('code'): + company_id.write( + {'hangout_company_authorization_code': kw.get('code')}) + client_id = company_id.hangout_client_id + client_secret = company_id.hangout_client_secret + redirect_uri = company_id.hangout_redirect_uri + data = { + 'code': kw.get('code'), + 'client_id': client_id, + 'client_secret': client_secret, + 'redirect_uri': redirect_uri, + 'grant_type': 'authorization_code' + } + response = requests.post( + 'https://accounts.google.com/o/oauth2/token', data=data, + headers={ + 'content-type': 'application/x-www-form-urlencoded'}) + if response.json() and response.json().get('access_token'): + company_id.write({ + 'hangout_company_access_token': + response.json().get('access_token'), + 'hangout_company_access_token_expiry': + datetime.datetime.now() + datetime.timedelta( + seconds=response.json().get('expires_in')), + 'hangout_company_refresh_token': + response.json().get('access_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_google_meet_integration/doc/RELEASE_NOTES.md b/odoo_google_meet_integration/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..e1e3db496 --- /dev/null +++ b/odoo_google_meet_integration/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 11.01.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Google Meet Calendar Integration Module diff --git a/odoo_google_meet_integration/models/__init__.py b/odoo_google_meet_integration/models/__init__.py new file mode 100644 index 000000000..bf59b5279 --- /dev/null +++ b/odoo_google_meet_integration/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 res_company +from . import calendar_event diff --git a/odoo_google_meet_integration/models/calendar_event.py b/odoo_google_meet_integration/models/calendar_event.py new file mode 100644 index 000000000..282c3cb83 --- /dev/null +++ b/odoo_google_meet_integration/models/calendar_event.py @@ -0,0 +1,168 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 random +import json +import requests +import pytz +from odoo import api, fields, models +from dateutil.relativedelta import relativedelta +from datetime import timedelta +from odoo.exceptions import ValidationError + +TIMEOUT = 20 + + +class CalendarEvent(models.Model): + """ Extends the Odoo Calendar Event model to include Google Meet + integration fields. + """ + _inherit = 'calendar.event' + + is_google_meet = fields.Boolean('Google Meet', default=False, + help="Boolean field indicating if the " + "event has a Google Meet integration.") + google_meet_url = fields.Char('Google Meet URL', + help='Joinging Meeting URL') + google_meet_code = fields.Char('Google Meet Code', + help='Joining Meeting Code') + google_event_id = fields.Char('Google Event ID', + help='Event ID of the google meet') + + def action_google_meet_url(self): + """ Opens the Google Meet URL associated with the event.""" + meet_url = self.google_meet_url + if meet_url: + url = self.google_meet_url + else: + url = 'https://meet.google.com/' + return { + 'type': 'ir.actions.act_url', + 'target': 'new', + 'url': url, + } + + @api.model_create_multi + def create(self, vals): + """ Overrides the create method to handle the creation of Google + Meet events. + """ + events = super(CalendarEvent, self).create(vals) + for event in events: + if event.is_google_meet: + self._create_google_meet(event) + return events + + def write(self, vals): + """Overrides the write method to handle updates for Google Meet + events.""" + events = super(CalendarEvent, self).write(vals) + for event in self: + if event.is_google_meet: + if not event.google_event_id: + self._create_google_meet(event) + return events + + def _create_google_meet(self, cal_event): + """Creating an event from Google calendar""" + start_dt = fields.Datetime.now() + finish_dt = fields.Datetime.now().replace(tzinfo=pytz.timezone('UTC')) + end_date_user = finish_dt.astimezone(pytz.timezone( + self.env.user.tz or 'UTC')).replace(tzinfo=None) + difference = relativedelta(end_date_user, start_dt) + diff_hrs = difference.hours + diff_min = difference.minutes + start = cal_event.start + stop = cal_event.stop + start_dt = start + timedelta(hours=diff_hrs, minutes=diff_min) + start_date = start_dt.isoformat() + stop_dt = stop + timedelta(hours=diff_hrs, minutes=diff_min) + stop_date = stop_dt.isoformat() + current_uid = self._context.get('uid') + user_id = self.env['res.users'].browse(current_uid) + company_id = user_id.company_id + chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789' + request_id = ''.join( + random.SystemRandom().choice(chars) for _ in range(16)) + url = 'https://www.googleapis.com/calendar/v3/calendars/primary/events?conferenceDataVersion=1&sendNotifications=True' + header = { + 'Authorization': + 'Bearer %s' % company_id.hangout_company_access_token, + 'Accept': 'application/json', + 'Content-Type': 'application/json' + } + event = { + 'summary': cal_event.name, + 'location': cal_event.location or None, + 'conferenceDataVersion': 1, + 'start': { + 'dateTime': start_date, + 'timeZone': user_id.tz, + }, + 'end': { + 'dateTime': stop_date, + 'timeZone': user_id.tz, + }, + 'attendees': [{'email': partner.email} for partner in + cal_event.partner_ids], + + 'conferenceData': { + "createRequest": { + "conferenceSolutionKey": { + "type": "hangoutsMeet" + }, + 'requestId': request_id + } + }, + } + result = requests.post(url, headers=header, timeout=TIMEOUT, + data=json.dumps(event)).json() + if result.get('error'): + company_id.google_meet_company_refresh_token() + result = requests.post(url, headers=header, timeout=TIMEOUT, + data=json.dumps(event)).json() + if result.get('hangoutLink'): + cal_event.google_event_id = result['id'] + cal_event.google_meet_url = result['hangoutLink'] + cal_event.google_meet_code = result['conferenceData'][ + 'conferenceId'] + else: + raise ValidationError("Failed to create event," + "Please check your authorization connection.") + + @api.onchange("is_google_meet") + def _delete_google_meet(self): + """Delete an event from google calendar""" + if not self.is_google_meet: + event_id = self.google_event_id + 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://www.googleapis.com/calendar/v3/calendars/primary' \ + '/events/%s' % event_id + header = { + 'Authorization': + 'Bearer %s' % company_id.hangout_company_access_token} + requests.delete(url, headers=header, timeout=TIMEOUT) + self.google_meet_url = '' + self.google_meet_code = '' + self.google_event_id = '' diff --git a/odoo_google_meet_integration/models/res_company.py b/odoo_google_meet_integration/models/res_company.py new file mode 100644 index 000000000..8d09f714e --- /dev/null +++ b/odoo_google_meet_integration/models/res_company.py @@ -0,0 +1,105 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 requests +from odoo import fields, models, _ +from odoo.exceptions import ValidationError, UserError + +TIMEOUT = 20 + + +class ResCompany(models.Model): + """ Inherit the company form view""" + _inherit = "res.company" + + hangout_client_id = fields.Char( + "Client Id", help='Google Developer Console Client ID') + hangout_client_secret = fields.Char( + "Client Secret", help='Google Developer Console Client Secret') + hangout_redirect_uri = fields.Char( + "Authorized redirect URIs", + help='GoogleAuthorized redirect URIs') + hangout_company_access_token = fields.Char( + 'Access Token', copy=False,help="Hangout access token") + hangout_company_access_token_expiry = fields.Datetime( + string='Token expiry', help="Hangout access token expiry date") + hangout_company_refresh_token = fields.Char( + 'Refresh Token', copy=False, help="Hangout refresh token") + hangout_company_authorization_code = fields.Char( + string="Authorization Code", help="Hangout authorization code") + + def google_meet_company_authenticate(self): + """Method for authentication""" + if not self.hangout_client_id: + raise ValidationError("Please Enter Client ID") + client_id = self.hangout_client_id + if not self.hangout_redirect_uri: + raise ValidationError("Please Enter Client Secret") + redirect_url = self.hangout_redirect_uri + calendar_scope = 'https://www.googleapis.com/auth/calendar' + calendar_event_scope = 'https://www.googleapis.com/auth/calendar.events' + url = ( + "https://accounts.google.com/o/oauth2/v2/auth?response_type=code" + "&access_type=offline&client_id={}&redirect_uri={}&scope={}+{} " + ).format(client_id, redirect_url, calendar_scope, + calendar_event_scope) + return { + "type": 'ir.actions.act_url', + "url": url, + "target": "new" + } + + def google_meet_company_refresh_token(self): + """Method to get the refresh token""" + if not self.hangout_client_id: + raise UserError( + _('Client ID is not yet configured.')) + client_id = self.hangout_client_id + + if not self.hangout_client_secret: + raise UserError( + _('Client Secret is not yet configured.')) + client_secret = self.hangout_client_secret + if not self.hangout_company_refresh_token: + raise UserError( + _('Refresh Token is not yet configured.')) + refresh_token = self.hangout_company_refresh_token + data = { + 'client_id': client_id, + 'client_secret': client_secret, + 'refresh_token': refresh_token, + 'grant_type': 'refresh_token', + } + response = requests.post( + 'https://accounts.google.com/o/oauth2/token', data=data, + headers={ + 'content-type': 'application/x-www-form-urlencoded'}, + timeout=TIMEOUT) + if response.json() and response.json().get('access_token'): + self.write({ + 'hangout_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_google_meet_integration/static/description/assets/icons/capture (1).png b/odoo_google_meet_integration/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/capture (1).png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/check.png b/odoo_google_meet_integration/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/check.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/chevron.png b/odoo_google_meet_integration/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/chevron.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/cogs.png b/odoo_google_meet_integration/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/cogs.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/consultation.png b/odoo_google_meet_integration/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/consultation.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/ecom-black.png b/odoo_google_meet_integration/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/ecom-black.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/education-black.png b/odoo_google_meet_integration/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/education-black.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/hotel-black.png b/odoo_google_meet_integration/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/hotel-black.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/img.png b/odoo_google_meet_integration/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/img.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/license.png b/odoo_google_meet_integration/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/license.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/lifebuoy.png b/odoo_google_meet_integration/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/lifebuoy.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/manufacturing-black.png b/odoo_google_meet_integration/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/manufacturing-black.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/photo-capture.png b/odoo_google_meet_integration/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/photo-capture.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/pos-black.png b/odoo_google_meet_integration/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/pos-black.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/puzzle.png b/odoo_google_meet_integration/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/puzzle.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/restaurant-black.png b/odoo_google_meet_integration/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/restaurant-black.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/service-black.png b/odoo_google_meet_integration/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/service-black.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/trading-black.png b/odoo_google_meet_integration/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/trading-black.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/training.png b/odoo_google_meet_integration/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/training.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/update.png b/odoo_google_meet_integration/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/update.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/user.png b/odoo_google_meet_integration/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/user.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/wrench.png b/odoo_google_meet_integration/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/wrench.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/Cybrosys R.png b/odoo_google_meet_integration/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/Cybrosys R.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/categories.png b/odoo_google_meet_integration/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/categories.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/check-box.png b/odoo_google_meet_integration/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/check-box.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/compass.png b/odoo_google_meet_integration/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/compass.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/corporate.png b/odoo_google_meet_integration/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/corporate.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/customer-support.png b/odoo_google_meet_integration/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/customer-support.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/cybrosys-logo.png b/odoo_google_meet_integration/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/cybrosys-logo.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/email.svg b/odoo_google_meet_integration/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/misc/features.png b/odoo_google_meet_integration/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/features.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/logo.png b/odoo_google_meet_integration/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/logo.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/phone.svg b/odoo_google_meet_integration/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_google_meet_integration/static/description/assets/misc/pictures.png b/odoo_google_meet_integration/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/pictures.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/pie-chart.png b/odoo_google_meet_integration/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/pie-chart.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/right-arrow.png b/odoo_google_meet_integration/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/right-arrow.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/star (1) 2.svg b/odoo_google_meet_integration/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/misc/star.png b/odoo_google_meet_integration/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/star.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/support (1) 1.svg b/odoo_google_meet_integration/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/misc/support-email.svg b/odoo_google_meet_integration/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/misc/support.png b/odoo_google_meet_integration/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/support.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/tick-mark.svg b/odoo_google_meet_integration/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/misc/whatsapp 1.svg b/odoo_google_meet_integration/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/misc/whatsapp.png b/odoo_google_meet_integration/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/misc/whatsapp.png differ diff --git a/odoo_google_meet_integration/static/description/assets/misc/whatsapp.svg b/odoo_google_meet_integration/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/modules/1.gif b/odoo_google_meet_integration/static/description/assets/modules/1.gif new file mode 100644 index 000000000..beb106101 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/modules/1.gif differ diff --git a/odoo_google_meet_integration/static/description/assets/modules/1.png b/odoo_google_meet_integration/static/description/assets/modules/1.png new file mode 100644 index 000000000..c6a41b7ec Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/modules/1.png differ diff --git a/odoo_google_meet_integration/static/description/assets/modules/2.png b/odoo_google_meet_integration/static/description/assets/modules/2.png new file mode 100644 index 000000000..25ed3e0b6 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/modules/2.png differ diff --git a/odoo_google_meet_integration/static/description/assets/modules/3.png b/odoo_google_meet_integration/static/description/assets/modules/3.png new file mode 100644 index 000000000..ed11bd818 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/modules/3.png differ diff --git a/odoo_google_meet_integration/static/description/assets/modules/4.png b/odoo_google_meet_integration/static/description/assets/modules/4.png new file mode 100644 index 000000000..5c56f0bcd Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/modules/4.png differ diff --git a/odoo_google_meet_integration/static/description/assets/modules/5.png b/odoo_google_meet_integration/static/description/assets/modules/5.png new file mode 100644 index 000000000..1c98e213f Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/modules/5.png differ diff --git a/odoo_google_meet_integration/static/description/assets/modules/6.png b/odoo_google_meet_integration/static/description/assets/modules/6.png new file mode 100644 index 000000000..eb3f8652f Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/modules/6.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots.zip b/odoo_google_meet_integration/static/description/assets/screenshots.zip new file mode 100644 index 000000000..653ca6247 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots.zip differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_1.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_1.png new file mode 100644 index 000000000..8811ef998 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_1.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_10.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_10.png new file mode 100644 index 000000000..815cb873a Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_10.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_11.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_11.png new file mode 100644 index 000000000..0c23ed0bc Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_11.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_12.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_12.png new file mode 100644 index 000000000..0f2a04d4e Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_12.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_13.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_13.png new file mode 100644 index 000000000..26985d54d Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_13.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_14.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_14.png new file mode 100644 index 000000000..0754c9565 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_14.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_15.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_15.png new file mode 100644 index 000000000..498d2b9cd Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_15.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_16.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_16.png new file mode 100644 index 000000000..65c6f07cf Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_16.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_17.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_17.png new file mode 100644 index 000000000..68b0fa7e1 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_17.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_18.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_18.png new file mode 100644 index 000000000..efae8ea94 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_18.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_19.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_19.png new file mode 100644 index 000000000..b2c35b870 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_19.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_2.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_2.png new file mode 100644 index 000000000..46eb9c958 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_2.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_20.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_20.png new file mode 100644 index 000000000..8130c0e69 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_20.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_21.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_21.png new file mode 100644 index 000000000..ef7a4706f Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_21.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_3.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_3.png new file mode 100644 index 000000000..5886c61cf Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_3.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_4.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_4.png new file mode 100644 index 000000000..b108a4bfd Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_4.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_5.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_5.png new file mode 100644 index 000000000..f101774a6 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_5.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_6.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_6.png new file mode 100644 index 000000000..d84984e6e Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_6.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_7.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_7.png new file mode 100644 index 000000000..c9867a931 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_7.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_8.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_8.png new file mode 100644 index 000000000..12a34c6cf Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_8.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_9.png b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_9.png new file mode 100644 index 000000000..10e73366b Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/google_meet_9.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/hero.gif b/odoo_google_meet_integration/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..62920bb49 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/hero.gif differ diff --git a/odoo_google_meet_integration/static/description/banner.jpg b/odoo_google_meet_integration/static/description/banner.jpg new file mode 100644 index 000000000..b957c613f Binary files /dev/null and b/odoo_google_meet_integration/static/description/banner.jpg differ diff --git a/odoo_google_meet_integration/static/description/icon.png b/odoo_google_meet_integration/static/description/icon.png new file mode 100644 index 000000000..647ddc384 Binary files /dev/null and b/odoo_google_meet_integration/static/description/icon.png differ diff --git a/odoo_google_meet_integration/static/description/index.html b/odoo_google_meet_integration/static/description/index.html new file mode 100644 index 000000000..aefbbb004 --- /dev/null +++ b/odoo_google_meet_integration/static/description/index.html @@ -0,0 +1,983 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+
+
+
+
+

+ Google Meet Calendar Integration

+

+ Google Meet Calendar Integration allows to open google meet + in odoo +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Create Google Meetings from Odoo Calendar

+
+
+
+
+
+
+ +
+
+

+ Send a Google Meeting invitation email to event attendees

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

+ Steps to set up in Google

+

+ 1. Sign in with your Google Account. To generate Google Calendar API credentials, + + Click Here + Click Enable APIs and Services. +

+
+
+
+
+
+
+ +
+
+

+

+

+ 2. In the search bar, look for Google Calendar API. +

+
+
+
+
+
+
+ +
+
+

+

+

+ 3. Select the Google Calendar API and enable it. +

+
+
+
+
+
+
+ +
+
+

+

+

+ 4. Click Create Credentials +

+
+
+
+
+
+
+ +
+
+

+

+

+ 4. Choose Google Calendar API and the User Data . Then, click Next. +

+
+
+
+
+
+
+ +
+
+

+

+

+ 6. Enter the app name and email address. Then, click Save and Continue. +

+
+
+
+
+
+
+ +
+
+

+

+

+ 7. Skipped the Third Scope. Save and Continue. +

+
+
+
+
+
+
+ +
+
+

+

+

+ 8. Choose Website application and then type the name of the app. +

+
+
+
+
+
+
+ +
+
+

+

+

+ 9. In the Authorized JavaScript Origins section, + add your company's URL. And in the Authorized redirect URIs section, + add your companys URL followed by /google_meet_authentication. + +

+
+
+
+
+
+
+ +
+
+

+

+

+ 10. After successfully generating Google Calendar API credentials, you will receive a Client ID and Client Secret. +

+
+
+
+
+
+
+ +
+
+

+

+

+ 11. Here we can see the Client ID and Secret Key +

+
+
+
+
+
+
+ +
+
+

+

+

+ 12. Also provide users to access the app. +

+
+
+
+
+
+
+ +
+
+

+

+

+ Go to Settings-> Companies + Then click on the company name and select the Google Meeting tab. + Enter the Client id, Client secret and Redirect Url in Credentials. +
+ After entering all the details click on Authenticate. +

+
+
+
+
+
+
+ +
+
+

+

+

+ After successful authentication, now you can create Google Meetings to your Odoo calendar. +

+
+
+
+
+
+
+ +
+
+

+

+

+ When the Google Meet checkbox is enabled, a Google meeting link is generated. +

+
+
+
+
+
+
+ +
+
+

+

+

+ By clicking the Join Meeting button, you can also join a Google Meeting. +

+
+
+
+
+
+
+ +
+
+

+

+

+ After you've created the meeting, you can view it in Google Calendar. +

+
+
+
+
+
+
+ +
+
+

+

+

+ Email the meeting information to all event participants +

+
+
+
+
+
+
+ +
+
+

+

+

+ Disable the Google Meet checkbox to delete the meeting. +

+
+
+
+
+
+
+ +
+
+

+

+

+ From Google Calendar also, the meeting has been removed. +

+
+
+
+
+
+
+
    +
  • + + Create Google Meetings from Odoo Calendar +
  • +
  • + + Send a Google Meeting invitation email to event attendees +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:27th December 2023 +
+

+ + Initial Commit for Google Meet Calendar Integration

+
+
+
+
+
+
+
+

+ 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_google_meet_integration/views/calendar_event_views.xml b/odoo_google_meet_integration/views/calendar_event_views.xml new file mode 100644 index 000000000..6febfa17f --- /dev/null +++ b/odoo_google_meet_integration/views/calendar_event_views.xml @@ -0,0 +1,37 @@ + + + + + + calendar.event.view.form.inherit.odoo_google_meet_integration + + calendar.event + + + + + + + + + + + + +