15 lines
351 B
Python
15 lines
351 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class Track(models.Model):
|
|
_inherit = 'event.track'
|
|
|
|
def action_unschedule(self):
|
|
self.ensure_one()
|
|
self.date = None
|
|
self.date_end = None
|
|
return {'type': 'ir.actions.act_window_close'}
|