diff --git a/src/modules/08_KPI/components/Tab/01_Assessment.vue b/src/modules/08_KPI/components/Tab/01_Assessment.vue index e3d7ee0..9544e38 100644 --- a/src/modules/08_KPI/components/Tab/01_Assessment.vue +++ b/src/modules/08_KPI/components/Tab/01_Assessment.vue @@ -195,7 +195,7 @@ watch( store.indicatorScoreVal = store.indicatorPercentVal * - ((store.dataProfile.isProbation + ((store.dataEvaluation.isProbation ? store.indicatorProbationScore : store.indicatorScore) / 100); @@ -476,11 +476,11 @@ onMounted(() => { />
-
+
{{ store.dataProfile.isProbation }} สรุปผลการประเมินผลสัมฤทธิ์ของงาน (คะแนนเต็ม {{ - store.dataProfile.isProbation + store.dataEvaluation.isProbation ? store.indicatorProbationScore : store.indicatorScore }} @@ -514,7 +514,7 @@ onMounted(() => { name: `สรุปผลการประเมินสมรรถนะ (คะแนนเต็ม ${ store.dataEvaluation.posTypeName != 'อำนวยการ' && store.dataEvaluation.posTypeName != 'บริหาร' - ? store.dataProfile.isProbation + ? store.dataEvaluation.isProbation ? store.competencyProbationScore : store.competencyScore : store.excusiveCompetencyScore @@ -558,7 +558,7 @@ onMounted(() => { :rows="[ { name: `ผลการประเมินการพัฒนาตนเอง (คะแนนเต็ม ${ - store.dataProfile.isProbation + store.dataEvaluation.isProbation ? store.devProbationScore : store.devScore } คะแนน)`, @@ -600,7 +600,7 @@ onMounted(() => { สรุปผลการประเมินพฤติกรรมการปฏิบัติราชการ (สมรรถนะ+การพัฒนาตนเอง) (คะแนนเต็ม {{ - store.dataProfile.isProbation + store.dataEvaluation.isProbation ? store.competencyDevProbationScore : store.competencyDevScore }} diff --git a/src/modules/08_KPI/components/Tab/Topic/02_Competency.vue b/src/modules/08_KPI/components/Tab/Topic/02_Competency.vue index 8f414ff..15cbbe1 100644 --- a/src/modules/08_KPI/components/Tab/Topic/02_Competency.vue +++ b/src/modules/08_KPI/components/Tab/Topic/02_Competency.vue @@ -209,7 +209,7 @@ function getData(type: string) { store.competencyScoreVal = weightAvg != 0 ? (resultAvg / weightAvg) * - (store.dataProfile.isProbation + (store.dataEvaluation.isProbation ? store.competencyProbationScore : store.competencyScore) : 0;