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
77d3f41a
Commit
77d3f41a
authored
Mar 25, 2025
by
Nattana Chaiyamat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PMS
parent
5beee0d8
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
3 deletions
+25
-3
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
+0
-0
supervisor-evaluation.component.html
...upervisor-evaluation/supervisor-evaluation.component.html
+6
-2
appraisal-pms-form.model.ts
src/app/shared/model/appraisal-pms-form.model.ts
+10
-0
appraisal-subordinate.model.ts
src/app/shared/model/appraisal-subordinate.model.ts
+5
-1
pms-group-grade.service.ts
src/app/shared/services/pms-group-grade.service.ts
+4
-0
No files found.
src/app/components/performance-evaluation/pms-evaluation/pms-evalution.component.html
View file @
77d3f41a
This diff is collapsed.
Click to expand it.
src/app/components/performance-evaluation/pms-evaluation/pms-evalution.component.ts
View file @
77d3f41a
This diff is collapsed.
Click to expand it.
src/app/components/performance-evaluation/supervisor-evaluation/supervisor-evaluation.component.html
View file @
77d3f41a
...
...
@@ -131,10 +131,14 @@
</div>
</td>
<td
class=
"text-center"
>
<div
class=
"flex justify-center"
>
<div
class=
"flex justify-center"
*
ngIf=
"item.statusPms"
>
<button
type=
"button"
class=
"ti-btn rounded-sm ti-btn-soft-mute"
[
class
.
ti-btn-soft-mute
]="
item
.
statusPms
.
statusType =
=
'
Not_evaluating_yet
'"
[
class
.
ti-btn-soft-secondary
]="
item
.
statusPms
.
statusType =
=
'
Boss
'"
[
class
.
ti-btn-soft-warning
]="
item
.
statusPms
.
statusType =
=
'
BossEvaluating
'"
[
class
.
ti-btn-soft-success
]="
item
.
statusPms
.
statusType =
=
'
Boss_finish
'"
style=
"height: 15px; width: 45px; font-size: 12px; display: flex; align-items: center; justify-content: center;margin-left:4px;"
(
click
)="
selectSubordinate
(
item
,'',
subordinate
.
select
?.
evaluationRoundId
,
''
);
pageEvalution=
'pms'
"
>
(
click
)="
selectSubordinate
(
item
,'',
subordinate
.
select
?.
evaluationRoundId
,
item
.
statusPms
.
statusType
);
pageEvalution=
'pms'
"
>
PMS
</button>
</div>
...
...
src/app/shared/model/appraisal-pms-form.model.ts
View file @
77d3f41a
...
...
@@ -54,6 +54,16 @@ export interface AppraisalPmsFormModel {
part5Detail
:
Part5Detail
[]
part6Detail
:
Part6Detail
[]
part7Detail
:
Part7Detail
[]
cfrDetail
:
string
,
gradeScore
:
string
netScore
:
number
part1SumScore
:
number
part2SumScore
:
number
part3SumScore
:
number
part4SumScore
:
number
part5SumScore
:
number
part6SumScore
:
number
part7SumScore
:
number
}
export
interface
PersonalLevel
{
...
...
src/app/shared/model/appraisal-subordinate.model.ts
View file @
77d3f41a
...
...
@@ -18,7 +18,11 @@ export interface Masfromevaluationassessment {
statusIdp
:
{
shortName
:
string
,
statusType
:
string
}
},
statusPms
:
{
shortName
:
string
,
statusType
:
string
},
checkStep
:
string
currentStep
:
string
}
...
...
src/app/shared/services/pms-group-grade.service.ts
View file @
77d3f41a
...
...
@@ -4,6 +4,7 @@ import { Observable } from 'rxjs';
import
{
environment
}
from
'src/environments/environment'
;
import
{
AlertModel
}
from
'../model/alert.model'
;
import
{
PmsGroupGradeModel
}
from
'../model/pms-group-grade.model'
;
import
{
CompetencyGradeModel
}
from
'../model/competency-grades.model'
;
@
Injectable
({
providedIn
:
'root'
})
...
...
@@ -18,6 +19,9 @@ export class PmsGroupGradeService {
getList
():
Observable
<
PmsGroupGradeModel
[]
>
{
return
this
.
http
.
get
<
PmsGroupGradeModel
[]
>
(
this
.
urlApi
+
"/lists"
)
}
getGradeList
():
Observable
<
CompetencyGradeModel
[]
>
{
return
this
.
http
.
get
<
CompetencyGradeModel
[]
>
(
this
.
urlApi
+
"/grade/lists"
)
}
post
(
body
:
PmsGroupGradeModel
):
Observable
<
AlertModel
>
{
return
this
.
http
.
post
<
AlertModel
>
(
this
.
urlApi
,
body
)
}
...
...
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