mirror of
https://github.com/bringout/oca-ocb-technical.git
synced 2026-04-21 02:32:02 +02:00
Initial commit: Technical packages
This commit is contained in:
commit
3473fa71a0
873 changed files with 297766 additions and 0 deletions
|
|
@ -0,0 +1,18 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
class MailActivityMixin(models.AbstractModel):
|
||||
_inherit = 'mail.activity.mixin'
|
||||
|
||||
activity_calendar_event_id = fields.Many2one(
|
||||
'calendar.event', string="Next Activity Calendar Event",
|
||||
compute='_compute_activity_calendar_event_id', groups="base.group_user")
|
||||
|
||||
@api.depends('activity_ids.calendar_event_id')
|
||||
def _compute_activity_calendar_event_id(self):
|
||||
"""This computes the calendar event of the next activity.
|
||||
It evaluates to false if there is no such event."""
|
||||
for record in self:
|
||||
record.activity_calendar_event_id = fields.first(record.activity_ids).calendar_event_id
|
||||
Loading…
Add table
Add a link
Reference in a new issue