Merged PR 30734: Removed QA Met Validation of Std Dev if no Std Dev Spec. Exists

Removed QA Met Validation of Std Dev if no Std Dev Spec. Exists

Related work items: #352919
This commit is contained in:
Ouellette Jonathan (CSC FI SSM MAI MESLEO)
2025-11-12 21:52:21 +00:00
parent 77d2f5f6ab
commit 624c6ce4b6
2 changed files with 7 additions and 14 deletions

View File

@ -352,7 +352,7 @@ Refresh:
end
Set_Property(@WINDOW:'.MET_STD_RESULT', 'DEFPROP', StdDev)
If StdDev GT MetStdMax then
Backcolor = RED$
If MetStdMax NE '' then Backcolor = RED$ else Backcolor = GREY$
end else
Backcolor = GREEN$
end
@ -483,7 +483,7 @@ Refresh:
end
Set_Property(@WINDOW:'.MET_STD_RESULT', 'DEFPROP', StdDev)
If StdDev GT MetStdMax then
Backcolor = RED$
If MetStdMax NE '' then Backcolor = RED$ else Backcolor = GREY$
end else
Backcolor = GREEN$
end
@ -751,8 +751,9 @@ ResultLF:
END
IF (MetStdResult NE '') THEN
If (MetStdResult > MetStdMax) then
Set_Property(@WINDOW:'.MET_STD_RESULT','BACKCOLOR',RED$)
If (MetStdResult > MetStdMax) then
If MetStdMax NE '' then Set_Property(@WINDOW:'.MET_STD_RESULT','BACKCOLOR',RED$) else Set_Property(@WINDOW:'.MET_STD_RESULT','BACKCOLOR', GREY$)
end else
Set_Property(@WINDOW:'.MET_STD_RESULT','BACKCOLOR',GREEN$)
END
@ -1133,3 +1134,4 @@ PubSaveClick:
RETURN