mirror of
https://github.com/bringout/oca-ocb-technical.git
synced 2026-04-18 16:32:00 +02:00
10 lines
286 B
Python
10 lines
286 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class MailActivity(models.Model):
|
|
_inherit = "mail.activity"
|
|
|
|
note_id = fields.Many2one('note.note', string="Related Note", ondelete='cascade')
|