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
0ce3b3b9
Commit
0ce3b3b9
authored
Sep 15, 2025
by
Nattana Chaiyamat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ปัจจัยการประเมินผล
parent
396dec01
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
define-evaluation-factors.component.html
...aluation-factors/define-evaluation-factors.component.html
+1
-1
define-evaluation-factors.component.ts
...evaluation-factors/define-evaluation-factors.component.ts
+1
-1
pms-evaluation-factors.model.ts
src/app/shared/model/pms-evaluation-factors.model.ts
+3
-3
No files found.
src/app/components/performance-management-evaluation/evaluation-factors/define-evaluation-factors/define-evaluation-factors.component.html
View file @
0ce3b3b9
...
...
@@ -84,7 +84,7 @@
*
ngFor=
"let pmsEvaluationFactors of dataListFilter() | slice:((currentPage-1) * 10) : (((currentPage-1) * 10) + 10);let i = index"
>
<td
class=
"text-center"
>
<span>
{{pmsEvaluationFactors.
personalLeve
l.plId }}
{{pmsEvaluationFactors.
j
l.plId }}
</span>
</td>
<td
*
ngFor=
"let item of pmsEvaluationFactors.pmsEvaluationFactors1ModelList"
>
...
...
src/app/components/performance-management-evaluation/evaluation-factors/define-evaluation-factors/define-evaluation-factors.component.ts
View file @
0ce3b3b9
...
...
@@ -96,7 +96,7 @@ export class DefineEvaluationFactorsComponent {
}
dataListFilter
()
{
return
this
.
pmsEvaluationFactors
.
dataList
.
filter
(
x
=>
x
.
personalLeve
l
.
plId
.
toLowerCase
().
includes
(
this
.
search
.
toLowerCase
()))
return
this
.
pmsEvaluationFactors
.
dataList
.
filter
(
x
=>
x
.
j
l
.
plId
.
toLowerCase
().
includes
(
this
.
search
.
toLowerCase
()))
}
searchChange
()
{
...
...
src/app/shared/model/pms-evaluation-factors.model.ts
View file @
0ce3b3b9
...
...
@@ -2,17 +2,17 @@ import { PLModel, MyPLModel } from "./pl.model"
import
{
MyPmsEvaluationFactors1Model
,
PmsEvaluationFactors1Model
}
from
"./pms-evaluation-factors1.model"
export
interface
PmsEvaluationFactorsModel
{
personalLeve
l
:
PLModel
j
l
:
PLModel
companyId
:
string
pmsEvaluationFactors1ModelList
:
PmsEvaluationFactors1Model
[]
}
export
class
MyPmsEvaluationFactorsModel
implements
PmsEvaluationFactorsModel
{
personalLeve
l
:
PLModel
j
l
:
PLModel
companyId
:
string
pmsEvaluationFactors1ModelList
:
PmsEvaluationFactors1Model
[]
constructor
(
data
?:
Partial
<
PmsEvaluationFactorsModel
>
)
{
this
.
personalLevel
=
new
MyPLModel
(
data
?.
personalLeve
l
)
this
.
jl
=
new
MyPLModel
(
data
?.
j
l
)
this
.
companyId
=
data
?.
companyId
||
""
this
.
pmsEvaluationFactors1ModelList
=
data
?.
pmsEvaluationFactors1ModelList
?.
map
(
x
=>
new
MyPmsEvaluationFactors1Model
(
x
))
||
[]
}
...
...
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