Merge branch 'develop' of github.com:Frappet/hrms-user into develop
This commit is contained in:
commit
261877b224
2 changed files with 7 additions and 7 deletions
|
|
@ -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(() => {
|
|||
/>
|
||||
|
||||
<div class="row text-body2 text-weight-bold">
|
||||
<div class="col-12 text-center row justify-center">
|
||||
<div class="col-12 text-center row justify-center">{{ store.dataProfile.isProbation }}
|
||||
<span
|
||||
>สรุปผลการประเมินผลสัมฤทธิ์ของงาน (คะแนนเต็ม
|
||||
{{
|
||||
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
|
||||
}}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue