calendar/wizard/mail_activity_schedule.py

20 lines
730 B
Python
Raw Normal View History

2024-05-03 12:43:00 +03:00
# -*- coding: utf-8 -*-
2024-05-21 15:09:16 +03:00
# Part of Talisman . See LICENSE file for full copyright and licensing details.
2024-05-03 12:43:00 +03:00
from odoo import models
from odoo.exceptions import UserError
from odoo.tools.translate import _
class MailActivitySchedule(models.TransientModel):
_inherit = 'mail.activity.schedule'
def action_create_calendar_event(self):
self.ensure_one()
if self.is_batch_mode:
raise UserError(_("Scheduling an activity using the calendar is not possible on more than one record."))
return self.with_context({
'default_res_model': self.res_model,
'default_res_id': self._evaluate_res_ids()[0],
})._action_schedule_activities().action_create_calendar_event()