Browse Source

Aug 22 [FIX] : Bug Fixed 'odoo_zoom_meet_integration'

pull/280/head
AjmalCybro 2 years ago
parent
commit
d10f6e3377
  1. 2
      odoo_zoom_meet_integration/__manifest__.py
  2. 2
      odoo_zoom_meet_integration/models/calendar_event.py
  3. BIN
      odoo_zoom_meet_integration/static/description/assets/screenshots/zoom12.png
  4. 7
      odoo_zoom_meet_integration/static/description/index.html

2
odoo_zoom_meet_integration/__manifest__.py

@ -21,7 +21,7 @@
############################################################################# #############################################################################
{ {
'name': "Odoo Zoom Meet Integration", 'name': "Odoo Zoom Meet Integration",
'version': '15.0.1.0.0', 'version': '15.0.1.0.1',
"category": 'Extra Tools', "category": 'Extra Tools',
'summary': """Integrates odoo calender module with Zoom.""", 'summary': """Integrates odoo calender module with Zoom.""",
'description': """Integrates odoo calender module with Zoom and helps to 'description': """Integrates odoo calender module with Zoom and helps to

2
odoo_zoom_meet_integration/models/calendar_event.py

@ -78,7 +78,7 @@ class CalendarEvent(models.Model):
duration = cal_event.duration * 60 duration = cal_event.duration * 60
payload = json.dumps({ payload = json.dumps({
"start_time": cal_event.start.isoformat(), "start_time": cal_event.start.isoformat(),
"timezone": user_id.tz, "timezone": 'UTC',
"topic": cal_event.name, "topic": cal_event.name,
"duration": int(duration), "duration": int(duration),
"settings": { "settings": {

BIN
odoo_zoom_meet_integration/static/description/assets/screenshots/zoom12.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

7
odoo_zoom_meet_integration/static/description/index.html

@ -225,15 +225,16 @@
<br/> <br/>
&nbsp;&nbsp;&nbsp;&nbsp;(https://marketplace.zoom.us/develop/create). &nbsp;&nbsp;&nbsp;&nbsp;(https://marketplace.zoom.us/develop/create).
<br/> <br/>
&nbsp;&nbsp;&nbsp;&nbsp;create your OAuth app and get your &nbsp;&nbsp;&nbsp;&nbsp;Create your OAuth app and get your
client id and client secret and set the redirect url. client id and client secret and set the redirect url in the Production app credential settings for production usage.
<br/><br/> <br/><br/>
The format for the redirect URI: 'Your web base URL + The format for the redirect URI: 'Your web base URL +
/zoom_meet_authentication'. /zoom_meet_authentication'.
</p> </p>
<img src="assets/screenshots/zoom1.png" <img src="assets/screenshots/zoom12.png"
class="img-responsive img-thumbnail border" width="100%" class="img-responsive img-thumbnail border" width="100%"
height="auto"/> height="auto"/>
<p style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1.3rem !important;">Add the Scopes for the zoom app which is mandatory for the meeting creation as shown below</p>
<img src="assets/screenshots/zoom10.png" <img src="assets/screenshots/zoom10.png"
class="img-responsive img-thumbnail border" width="100%" class="img-responsive img-thumbnail border" width="100%"
height="auto"/> height="auto"/>

Loading…
Cancel
Save