diff --git a/odoo_google_meet_integration/README.rst b/odoo_google_meet_integration/README.rst new file mode 100644 index 000000000..f858ee8ae --- /dev/null +++ b/odoo_google_meet_integration/README.rst @@ -0,0 +1,43 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-green.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Google Meet Calendar Integration +================================ +A seamless integration solution for Google Meet within your calendar, +simplifying scheduling and access to virtual meetings. + +License +------- +GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPLv3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer: (V18) Nivedhya T, 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..bbe14c07f --- /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 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 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..98ac05beb --- /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 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': "Google Meet Calendar Integration", + 'version': '18.0.1.0.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': "AGPL-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..641300470 --- /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: Cybrosys Techno Solutions() +# +# 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_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..8717344d1 --- /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: 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 datetime +import requests +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..6af851cbe --- /dev/null +++ b/odoo_google_meet_integration/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 10.10.2024 +#### Version 18.0.1.0.0 +#### ADD +- Initial commit for Google Meet Calendar Integration diff --git a/odoo_google_meet_integration/models/__init__.py b/odoo_google_meet_integration/models/__init__.py new file mode 100644 index 000000000..83ed66eb5 --- /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 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_google_meet_integration/models/calendar_event.py b/odoo_google_meet_integration/models/calendar_event.py new file mode 100644 index 000000000..d5ae43412 --- /dev/null +++ b/odoo_google_meet_integration/models/calendar_event.py @@ -0,0 +1,169 @@ +# -*- 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 json +import pytz +import random +import requests +from odoo import api, fields, models +from odoo.exceptions import ValidationError +from dateutil.relativedelta import relativedelta +from datetime import timedelta + + +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..f902d93c7 --- /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/cybro-icon.png b/odoo_google_meet_integration/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/cybro-icon.png differ diff --git a/odoo_google_meet_integration/static/description/assets/cybro-odoo.png b/odoo_google_meet_integration/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/cybro-odoo.png differ diff --git a/odoo_google_meet_integration/static/description/assets/h2.png b/odoo_google_meet_integration/static/description/assets/h2.png new file mode 100755 index 000000000..0bfc4707d Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/h2.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/arrows-repeat.svg b/odoo_google_meet_integration/static/description/assets/icons/arrows-repeat.svg new file mode 100644 index 000000000..1d7efabc5 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/banner-1.png b/odoo_google_meet_integration/static/description/assets/icons/banner-1.png new file mode 100644 index 000000000..c180db172 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/banner-1.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/banner-2.svg b/odoo_google_meet_integration/static/description/assets/icons/banner-2.svg new file mode 100644 index 000000000..e606d97d9 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/banner-bg.png b/odoo_google_meet_integration/static/description/assets/icons/banner-bg.png new file mode 100644 index 000000000..a8238d3c0 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/banner-bg.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/banner-bg.svg b/odoo_google_meet_integration/static/description/assets/icons/banner-bg.svg new file mode 100644 index 000000000..b1378103e --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/banner-call.svg b/odoo_google_meet_integration/static/description/assets/icons/banner-call.svg new file mode 100644 index 000000000..96c687e81 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/banner-mail.svg b/odoo_google_meet_integration/static/description/assets/icons/banner-mail.svg new file mode 100644 index 000000000..cbf0d158d --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/banner-pattern.svg b/odoo_google_meet_integration/static/description/assets/icons/banner-pattern.svg new file mode 100644 index 000000000..9c1c7e101 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/banner-promo.svg b/odoo_google_meet_integration/static/description/assets/icons/banner-promo.svg new file mode 100644 index 000000000..d52791b11 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/brand-pair.svg b/odoo_google_meet_integration/static/description/assets/icons/brand-pair.svg new file mode 100644 index 000000000..d8db7fc1e --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/close-icon.svg b/odoo_google_meet_integration/static/description/assets/icons/close-icon.svg new file mode 100644 index 000000000..df8cce37a --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + 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/collabarate-icon.svg b/odoo_google_meet_integration/static/description/assets/icons/collabarate-icon.svg new file mode 100644 index 000000000..dd4e10518 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + 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/cybro-logo.png b/odoo_google_meet_integration/static/description/assets/icons/cybro-logo.png new file mode 100644 index 000000000..ff4b78220 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/cybro-logo.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/down.svg b/odoo_google_meet_integration/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file 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/faq.png b/odoo_google_meet_integration/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/faq.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/feature-icon.svg b/odoo_google_meet_integration/static/description/assets/icons/feature-icon.svg new file mode 100644 index 000000000..fa0ea6850 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/feature.png b/odoo_google_meet_integration/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/feature.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/gear.svg b/odoo_google_meet_integration/static/description/assets/icons/gear.svg new file mode 100644 index 000000000..0cc66b6ea --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/hero.gif b/odoo_google_meet_integration/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..f8f61f2f7 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/hero.gif differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/hire-odoo.svg b/odoo_google_meet_integration/static/description/assets/icons/hire-odoo.svg new file mode 100644 index 000000000..e1ac089b0 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + 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/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/life-ring-icon.svg b/odoo_google_meet_integration/static/description/assets/icons/life-ring-icon.svg new file mode 100644 index 000000000..3ae6e1d89 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + 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/mail.svg b/odoo_google_meet_integration/static/description/assets/icons/mail.svg new file mode 100644 index 000000000..1eedde695 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + 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/notes.png b/odoo_google_meet_integration/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/notes.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/notification icon.svg b/odoo_google_meet_integration/static/description/assets/icons/notification icon.svg new file mode 100644 index 000000000..053189973 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/odoo-consultancy.svg b/odoo_google_meet_integration/static/description/assets/icons/odoo-consultancy.svg new file mode 100644 index 000000000..e05f65bde --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/odoo-licencing.svg b/odoo_google_meet_integration/static/description/assets/icons/odoo-licencing.svg new file mode 100644 index 000000000..2606c88b0 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/odoo-logo.png b/odoo_google_meet_integration/static/description/assets/icons/odoo-logo.png new file mode 100644 index 000000000..0e4d0eb5a Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/odoo-logo.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/patter.svg b/odoo_google_meet_integration/static/description/assets/icons/patter.svg new file mode 100644 index 000000000..25c9c0a8f --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/pattern1.png b/odoo_google_meet_integration/static/description/assets/icons/pattern1.png new file mode 100644 index 000000000..09ab0fb2d Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/pattern1.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-piece-icon.svg b/odoo_google_meet_integration/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100644 index 000000000..3e9ad9373 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + 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/replace-icon.svg b/odoo_google_meet_integration/static/description/assets/icons/replace-icon.svg new file mode 100644 index 000000000..d0e3a7af1 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + 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/screenshot-main.png b/odoo_google_meet_integration/static/description/assets/icons/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/screenshot-main.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/screenshot.png b/odoo_google_meet_integration/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/screenshot.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/skype-fill.svg b/odoo_google_meet_integration/static/description/assets/icons/skype-fill.svg new file mode 100644 index 000000000..c17423639 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/skype.png b/odoo_google_meet_integration/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/skype.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/skype.svg b/odoo_google_meet_integration/static/description/assets/icons/skype.svg new file mode 100644 index 000000000..df3dad39b --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/star-1.svg b/odoo_google_meet_integration/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/star-2.svg b/odoo_google_meet_integration/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_google_meet_integration/static/description/assets/icons/support.png b/odoo_google_meet_integration/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/support.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/test-1 - Copy.png b/odoo_google_meet_integration/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/test-1 - Copy.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/test-1.png b/odoo_google_meet_integration/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/test-1.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/test-2.png b/odoo_google_meet_integration/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/test-2.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/translate.svg b/odoo_google_meet_integration/static/description/assets/icons/translate.svg new file mode 100644 index 000000000..af9c8a1aa --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + 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/video.png b/odoo_google_meet_integration/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/video.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/whatsapp.png b/odoo_google_meet_integration/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/icons/whatsapp.png differ diff --git a/odoo_google_meet_integration/static/description/assets/icons/wrench-icon.svg b/odoo_google_meet_integration/static/description/assets/icons/wrench-icon.svg new file mode 100644 index 000000000..174b5a465 --- /dev/null +++ b/odoo_google_meet_integration/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + 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/modules/1.jpg b/odoo_google_meet_integration/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..3cb15fe01 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/modules/1.jpg differ diff --git a/odoo_google_meet_integration/static/description/assets/modules/2.jpg b/odoo_google_meet_integration/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..662cadcc3 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/modules/2.jpg 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..7c67e2eec 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..696582fa8 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.jpg b/odoo_google_meet_integration/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..4bd9278e3 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/modules/5.jpg differ diff --git a/odoo_google_meet_integration/static/description/assets/modules/6.jpg b/odoo_google_meet_integration/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..580ea075d Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/modules/6.jpg differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot07.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot07.png new file mode 100644 index 000000000..3ef2ac966 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot07.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot1.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot1.png new file mode 100644 index 000000000..c8bf02f64 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot1.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot10.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot10.png new file mode 100644 index 000000000..945a6cb0c Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot10.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot11.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot11.png new file mode 100644 index 000000000..5c0a5474f Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot11.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot12.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot12.png new file mode 100644 index 000000000..9d680e52d Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot12.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot13.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot13.png new file mode 100644 index 000000000..220ae0e47 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot13.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot14.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot14.png new file mode 100644 index 000000000..246357d51 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot14.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot15.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot15.png new file mode 100644 index 000000000..b7f50dd16 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot15.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot16.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot16.png new file mode 100644 index 000000000..4d068d4da Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot16.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot17.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot17.png new file mode 100644 index 000000000..e54b1d83a Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot17.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot18.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot18.png new file mode 100644 index 000000000..f2acf31e2 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot18.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot19.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot19.png new file mode 100644 index 000000000..b27e98a69 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot19.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot2.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot2.png new file mode 100644 index 000000000..9fa464412 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot2.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot20.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot20.png new file mode 100644 index 000000000..d2b9ba9ae Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot20.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot21.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot21.png new file mode 100644 index 000000000..e364ef0b9 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot21.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot3.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot3.png new file mode 100644 index 000000000..8b8c87f2c Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot3.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot4.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot4.png new file mode 100644 index 000000000..6b449f702 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot4.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot5.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot5.png new file mode 100644 index 000000000..541bc9549 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot5.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot6.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot6.png new file mode 100644 index 000000000..2cf089c8f Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot6.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot8.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot8.png new file mode 100644 index 000000000..4babc7d40 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot8.png differ diff --git a/odoo_google_meet_integration/static/description/assets/screenshots/screenshot9.png b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot9.png new file mode 100644 index 000000000..f3d93f613 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/screenshots/screenshot9.png differ diff --git a/odoo_google_meet_integration/static/description/assets/y18.jpg b/odoo_google_meet_integration/static/description/assets/y18.jpg new file mode 100755 index 000000000..eea1714f2 Binary files /dev/null and b/odoo_google_meet_integration/static/description/assets/y18.jpg 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..eda1c63c0 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..d9bd21355 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..e520cb753 --- /dev/null +++ b/odoo_google_meet_integration/static/description/index.html @@ -0,0 +1,1508 @@ + + + + + + Google Meet Calendar Integration + + + + + + + + + + +
+
+ + + +
+
+ Community +
+ + + + + + + + +
+
+ +
+
+
+
+

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

+

Google Meet Calendar Integration +

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

Key + Highlights

+
+
+
+
+ +
+
+ Create Google Meetings. +
+

+ User can + Create Google Meetings from Odoo Calendar.

+
+
+
+
+
+ +
+
+ Send a Google Meeting invitation email. +
+

+ Send a Google Meeting invitation email to event attendees. +

+
+
+
+
+ +
+
+
+ Google Meet Calendar Integration +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ Steps to set up in + + Google. +

+
+
+

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

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

+ Google Calender + + API. +

+
+
+

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

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

+ Select the + + Google Calendar API. +

+
+
+

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

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

+ Create + + + Credentials. +

+
+
+

+ 4. Click Create Credentials +

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

+ Google + + + Calendar API and the User Data. +

+
+
+

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

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

+ App name and + + + Email address. +

+
+
+

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

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

+ Developer + + + Contact information. +

+
+
+

+ Add the mail for developer contact information. +

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

+ Skipped the Third Scope + + + Third Scope +

+
+
+

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

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

+ Choose + + + Website application. +

+
+
+

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

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

+ Your company's URL and + + + Authorized redirect URIs section. +

+
+
+

+ 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. +

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

+ Generating + + + Google Calendar API credentials. +

+
+
+

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

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

+ Client ID and + + + Secret Key. +

+
+
+

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

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

+ Provide users to + + + access the app. +

+
+
+

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

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

+ App Settings + + + +

+
+
+

+ 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. +

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

+ Authentication + + + +

+
+
+

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

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

+ Enable + + + Google Meet checkbox. +

+
+
+

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

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

+ Clicking the + + + Join Meeting button. +

+
+
+

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

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

+ View it in + + + Google Calendar. +

+
+
+

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

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

+ Email the + + + Meeting information. +

+
+
+

+ Email the meeting information to all event participants. +

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

+ Disable the + + + Google Meet checkbox. +

+
+
+

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

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

+ Meeting has been + + + removed. +

+
+
+

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

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

+ Create Google Meetings from Odoo Calendar.

+
+ +
+
+
+
+
+
+ +
+

+ Send a Google Meeting invitation email to event attendees.

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

+ To install the module, + navigate to the Apps menu in Odoo, + search for "Google Meet Calendar Integration," + and click the "Install" button. +

+
+
+ +
+ +
+

+ After installation, + go to the Settings menu, + find the Google Meet configuration + section, and provide the necessary + API credentials and access + tokens to enable integration + with your Google Calendar. +

+
+
+ +
+ +
+

+ To delete a Google Meet link, + uncheck the "Google Meet" option + when editing the event. + The module will remove the + link from your Google Calendar. +

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

+ Latest Release 18.0.1.0.0 +

+ + 10th October, 2024 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • + +
+
+
+
+
+
+
+
+
+
+ + + + + + +
+

+ Our Services

+ +
+ +
+
+ .... +
+
+ +
+ + +
+
+ + + + + + 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..dea9b74df --- /dev/null +++ b/odoo_google_meet_integration/views/calendar_event_views.xml @@ -0,0 +1,37 @@ + + + + + + view.calendar.event.form.inherit.odoo_google_meet_integration + + calendar.event + + + + + + + + + + + + +