Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mySkill-x
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
angular
mySkill-x
Commits
21dfbf99
Commit
21dfbf99
authored
Mar 26, 2025
by
Nattana Chaiyamat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ประเมิน pms
parent
962ed626
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
6 deletions
+25
-6
pms-evalution.component.html
...ce-evaluation/pms-evaluation/pms-evalution.component.html
+0
-0
pms-evalution.component.ts
...ance-evaluation/pms-evaluation/pms-evalution.component.ts
+25
-6
No files found.
src/app/components/performance-evaluation/pms-evaluation/pms-evalution.component.html
View file @
21dfbf99
This diff is collapsed.
Click to expand it.
src/app/components/performance-evaluation/pms-evaluation/pms-evalution.component.ts
View file @
21dfbf99
import
{
ChangeDetectorRef
,
Component
,
EventEmitter
,
Input
,
Output
}
from
'@angular/core'
;
import
{
ChangeDetectorRef
,
Component
,
EventEmitter
,
Input
,
Output
,
SimpleChanges
}
from
'@angular/core'
;
import
{
AppraisalPmsFormModel
}
from
'src/app/shared/model/appraisal-pms-form.model'
;
import
{
CompetencyGradeModel
,
MyCompetencyGradeModel
}
from
'src/app/shared/model/competency-grades.model'
;
import
{
AppraisalService
}
from
'src/app/shared/services/appraisal.service'
;
...
...
@@ -46,21 +46,21 @@ export class PmsEvalutionComponent {
netScore
:
0
,
},
{
id
:
2
,
evaluationFactor
:
"Part 2 : ประเมินผลการปฏิบัติงานประจำ(Department KPI)"
,
evaluationFactor
:
"Part 2 : ประเมินผลการปฏิบัติงานประจำ
(Department KPI)"
,
rawScore
:
100
,
factors
:
0
,
scoreObtained
:
0
,
netScore
:
0
,
},
{
id
:
3
,
evaluationFactor
:
"Part 3 : ประเมินผลการปฏิบัติงานประจำ(Individual KPI)"
,
evaluationFactor
:
"Part 3 : ประเมินผลการปฏิบัติงานประจำ
(Individual KPI)"
,
rawScore
:
100
,
factors
:
0
,
scoreObtained
:
0
,
netScore
:
0
,
},
{
id
:
4
,
evaluationFactor
:
"Part 4 : ประเมินผลสมรรถนะที่สนับสนุนการปฏิบัติงาน(Competency)"
,
evaluationFactor
:
"Part 4 : ประเมินผลสมรรถนะที่สนับสนุนการปฏิบัติงาน
(Competency)"
,
rawScore
:
100
,
factors
:
0
,
scoreObtained
:
0
,
...
...
@@ -74,14 +74,14 @@ export class PmsEvalutionComponent {
netScore
:
0
,
},
{
id
:
6
,
evaluationFactor
:
"Part 6
: งานที่ได้รับมอบหมายเพิ่มเติม (
Cross Functional Project Assignment)"
,
evaluationFactor
:
"Part 6
: งานที่ได้รับมอบหมายเพิ่มเติม (
Cross Functional Project Assignment)"
,
rawScore
:
100
,
factors
:
0
,
scoreObtained
:
0
,
netScore
:
0
,
},
{
id
:
7
,
evaluationFactor
:
"Part 7
: กิจกรรมพิเศษ(
Special Activities)"
,
evaluationFactor
:
"Part 7
: กิจกรรมพิเศษ (
Special Activities)"
,
rawScore
:
100
,
factors
:
0
,
scoreObtained
:
0
,
...
...
@@ -108,6 +108,11 @@ export class PmsEvalutionComponent {
private
settingAssessmentService
:
SettingAssessmentService
)
{
}
ngOnChanges
(
changes
:
SimpleChanges
):
void
{
if
(
changes
[
'evaluateeId'
].
currentValue
||
changes
[
'evaluaterId'
].
currentValue
)
{
this
.
toggleAllParts
(
this
.
evaluateeId
==
this
.
evaluaterId
)
}
}
ngOnInit
():
void
{
this
.
getPmsGroupGradeList
()
this
.
getAppraisalPmsForm
()
...
...
@@ -588,4 +593,17 @@ export class PmsEvalutionComponent {
}
})
}
toggleAllParts
(
check
:
boolean
)
{
this
.
part1show
=
check
this
.
part2show
=
check
this
.
part3show
=
check
this
.
part4show
=
check
this
.
part5show
=
check
this
.
part6show
=
check
this
.
part7show
=
check
this
.
part8show
=
check
this
.
part9show
=
check
this
.
part10show
=
check
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment