7 lines
171 B
Python
7 lines
171 B
Python
from odoo import models, fields, api, _
|
|
|
|
|
|
class SFMessagePlan(models.Model):
|
|
_name = 'sf.production.plan'
|
|
_inherit = ['sf.production.plan', 'sf.message.template']
|