Browse Source

Sep 6 [FIX] : Bug Fixed 'odoo_zoom_meet_integration'

pull/195/merge
AjmalCybro 2 years ago
parent
commit
e5f786e8f2
  1. 2
      odoo_zoom_meet_integration/__manifest__.py
  2. 2
      odoo_zoom_meet_integration/doc/RELEASE_NOTES.md
  3. 1
      odoo_zoom_meet_integration/models/calendar_event.py
  4. 13
      odoo_zoom_meet_integration/views/calendar_event_views.xml

2
odoo_zoom_meet_integration/__manifest__.py

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

2
odoo_zoom_meet_integration/doc/RELEASE_NOTES.md

@ -1,6 +1,6 @@
## Module <odoo_zoom_meet_integration>
#### 14.07.2023
#### 04.09.2023
#### Version 15.0.1.0.0
#### ADD
- Initial commit for Odoo Zoom Meet Integration

1
odoo_zoom_meet_integration/models/calendar_event.py

@ -37,6 +37,7 @@ class CalendarEvent(models.Model):
help='Joining Meeting Code')
zoom_event = fields.Char(string='Zoom Event ID',
help='Event ID of the zoom meet')
videocall_location = fields.Char('Meeting URL', related='zoom_meet_url')
def action_zoom_meet_url(self):
"""Join zoom from Odoo"""

13
odoo_zoom_meet_integration/views/calendar_event_views.xml

@ -42,4 +42,17 @@
</xpath>
</field>
</record>
<record id="view_calendar_event_calendar" model="ir.ui.view">
<field name="name">view.calendar.event.form.inherit.odoo.zoom.meet.integration</field>
<field name="model">calendar.event</field>
<field name="inherit_id" ref="calendar.view_calendar_event_calendar"/>
<field name="arch" type="xml">
<xpath expr="//calendar/field[@name='partner_ids']" position="after">
<field name="videocall_location" widget="url"
text="Join Video Call"
options="{'icon': 'fa fa-lg fa-video-camera'}"
attrs="{'invisible': [('videocall_location', '=', False)]}"/>
</xpath>
</field>
</record>
</odoo>

Loading…
Cancel
Save