11 lines
271 B
Python
11 lines
271 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class QualityCheck(models.Model):
|
|
_inherit = 'quality.check'
|
|
|
|
is_expired = fields.Boolean(related='lot_id.product_expiry_alert')
|