From 1e64f6279358f5c838463497894e020857b37311 Mon Sep 17 00:00:00 2001 From: LYW <leeyeanwoo@diteam.co.kr> Date: 화, 21 12월 2021 09:37:24 +0900 Subject: [PATCH] Ongoing90 #3835 CF AOI Review Offset Grid 클릭시 해당 되는 결함 DefectMap표시 --- ReviewSystem/CHReviewPrioritySorter/PrioritySorter_CPJT.cpp | 18 +++++++++++------- 1 files changed, 11 insertions(+), 7 deletions(-) diff --git a/ReviewSystem/CHReviewPrioritySorter/PrioritySorter_CPJT.cpp b/ReviewSystem/CHReviewPrioritySorter/PrioritySorter_CPJT.cpp index a30e289..61db76e 100644 --- a/ReviewSystem/CHReviewPrioritySorter/PrioritySorter_CPJT.cpp +++ b/ReviewSystem/CHReviewPrioritySorter/PrioritySorter_CPJT.cpp @@ -662,34 +662,38 @@ { if (pDefectResult->nJudgeType != 4) { return FALSE; } } - else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_PT) + else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_ND) { if (pDefectResult->nJudgeType != 5) { return FALSE; } } - else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_Review) + else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_PT) { if (pDefectResult->nJudgeType != 6) { return FALSE; } } - else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_RC) + else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_Review) { if (pDefectResult->nJudgeType != 7) { return FALSE; } } - else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_Size) + else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_RC) { if (pDefectResult->nJudgeType != 8) { return FALSE; } } - else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_VI) + else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_Size) { if (pDefectResult->nJudgeType != 9) { return FALSE; } } - else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_Rework) + else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_VI) { if (pDefectResult->nJudgeType != 10) { return FALSE; } } - else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_Unknown) + else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_Rework) { if (pDefectResult->nJudgeType != 11) { return FALSE; } } + else if (pPriorityInfo->GetPriorityGradeData() == RCP_PRIORITY_Judge_Unknown) + { + if (pDefectResult->nJudgeType != 12) { return FALSE; } + } } //RCP_PRIORITY_ORDER_ALL,RCP_PRIORITY_ORDER_NONE_STACK,RCP_PRIORITY_ORDER_STACK -- Gitblit v1.9.3