forked from Mapan/odoo17e
13 lines
343 B
Python
13 lines
343 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class QualityCheckWizard(models.TransientModel):
|
|
|
|
_inherit = 'quality.check.wizard'
|
|
|
|
ip = fields.Char(related='current_check_id.ip')
|
|
identifier = fields.Char(related='current_check_id.identifier')
|