Add the diopter field

This commit is contained in:
cosmos 2022-10-11 18:11:29 -05:00
parent 13cc3b6e3e
commit 517cc3a58e
3 changed files with 6 additions and 0 deletions

View File

@ -402,6 +402,7 @@ class Maintenance(Workflow, ModelSQL, ModelView):
if maintenance.equipment.product.resolution_type == "analoga": if maintenance.equipment.product.resolution_type == "analoga":
calibrationLineTotal = CalibrationLineTotal( calibrationLineTotal = CalibrationLineTotal(
diopter=pattern,
dev_std=dev_std, dev_std=dev_std,
uncertain_type_A=uncertain_type_A, uncertain_type_A=uncertain_type_A,
uncertain_pattern=uncertain_pattern, uncertain_pattern=uncertain_pattern,
@ -421,6 +422,7 @@ class Maintenance(Workflow, ModelSQL, ModelView):
elif maintenance.equipment.product.resolution_type == "digital": elif maintenance.equipment.product.resolution_type == "digital":
calibrationLineTotal = CalibrationLineTotal( calibrationLineTotal = CalibrationLineTotal(
diopter=pattern,
dev_std=dev_std, dev_std=dev_std,
uncertain_type_A=uncertain_type_A, uncertain_type_A=uncertain_type_A,
uncertain_pattern=uncertain_pattern, uncertain_pattern=uncertain_pattern,
@ -447,6 +449,7 @@ class Calibration(ModelSQL, ModelView):
maintenance = fields.Many2One('optical_equipment.maintenance', "Maintenance", ondelete="CASCADE", maintenance = fields.Many2One('optical_equipment.maintenance', "Maintenance", ondelete="CASCADE",
select=True, required=True) select=True, required=True)
diopter = fields.Float("Diopter", states=_states)
dev_std = fields.Float("Standart Desviation", states=_states) dev_std = fields.Float("Standart Desviation", states=_states)
uncertain_type_A = fields.Float("Uncertain Type A", states=_states) uncertain_type_A = fields.Float("Uncertain Type A", states=_states)
uncertain_pattern = fields.Float("Uncertain Pattern", states=_states) uncertain_pattern = fields.Float("Uncertain Pattern", states=_states)

View File

@ -2,6 +2,8 @@
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of <!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. --> this repository contains the full copyright notices and license terms. -->
<form> <form>
<label name="diopter"/>
<field name="diopter"/>
<label name="dev_std"/> <label name="dev_std"/>
<field name="dev_std"/> <field name="dev_std"/>
<label name="uncertain_type_A"/> <label name="uncertain_type_A"/>

View File

@ -2,6 +2,7 @@
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of <!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. --> this repository contains the full copyright notices and license terms. -->
<tree> <tree>
<field name="diopter" expand="1"/>
<field name="dev_std" expand="1"/> <field name="dev_std" expand="1"/>
<field name="uncertain_type_A" expand="1"/> <field name="uncertain_type_A" expand="1"/>
<field name="uncertain_pattern" expand="1"/> <field name="uncertain_pattern" expand="1"/>