1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/quality_control_iot/wizard/quality_check_wizard.py
2024-12-10 09:04:09 +07:00

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')