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
707e0e02
Commit
707e0e02
authored
Apr 16, 2025
by
Nattana Chaiyamat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
idp
parent
779e05b7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
35 additions
and
1 deletions
+35
-1
idp-evalution.component.html
...ce-evaluation/idp-evaluation/idp-evalution.component.html
+0
-0
idp-evalution.component.scss
...ce-evaluation/idp-evaluation/idp-evalution.component.scss
+10
-0
idp-evalution.component.ts
...ance-evaluation/idp-evaluation/idp-evalution.component.ts
+0
-0
competencycourse-mini.model.ts
src/app/shared/model/competencycourse-mini.model.ts
+20
-0
idp-form.model.ts
src/app/shared/model/idp-form.model.ts
+1
-1
competencycourse.service.ts
src/app/shared/services/competencycourse.service.ts
+4
-0
No files found.
src/app/components/performance-evaluation/idp-evaluation/idp-evalution.component.html
View file @
707e0e02
This diff is collapsed.
Click to expand it.
src/app/components/performance-evaluation/idp-evaluation/idp-evalution.component.scss
View file @
707e0e02
.ciricon
{
height
:
12px
;
/* กำหนดความสูงของวงกลม */
width
:
12px
;
/* กำหนดความกว้างของวงกลม */
background-color
:
#ffffff
;
font-weight
:
bold
;
display
:
flex
;
/* ใช้ Flexbox */
justify-content
:
center
;
/* จัดตำแหน่งแนวนอนให้กึ่งกลาง */
align-items
:
center
;
/* จัดตำแหน่งแนวตั้งให้กึ่งกลาง */
border-radius
:
2px
;
/* ทำให้เป็นวงกลม */
}
src/app/components/performance-evaluation/idp-evaluation/idp-evalution.component.ts
View file @
707e0e02
This diff is collapsed.
Click to expand it.
src/app/shared/model/competencycourse-mini.model.ts
0 → 100644
View file @
707e0e02
export
interface
CompetencycourseMiniModel
{
competencyCourseId
:
string
companyId
:
string
edesc
:
string
tdesc
:
string
}
export
class
MyCompetencycourseMiniModel
implements
CompetencycourseMiniModel
{
competencyCourseId
:
string
companyId
:
string
edesc
:
string
tdesc
:
string
constructor
(
data
:
Partial
<
CompetencycourseMiniModel
>
)
{
this
.
competencyCourseId
=
data
.
competencyCourseId
||
""
this
.
companyId
=
data
.
companyId
||
""
this
.
edesc
=
data
.
edesc
||
""
this
.
tdesc
=
data
.
tdesc
||
""
}
}
src/app/shared/model/idp-form.model.ts
View file @
707e0e02
...
...
@@ -1463,7 +1463,7 @@ export interface CompetencyIndicatorsCourses1 {
competencyCourseId
:
string
competencyCourse
:
CompetencyCourse
[]
behavioralIndicators
:
BehavioralIndicator
[]
idpDevelopmentPlan
:
IdpDevelopmentPlan
idpDevelopmentPlan
?
:
IdpDevelopmentPlan
}
export
interface
IndicatorsCourses0
{
...
...
src/app/shared/services/competencycourse.service.ts
View file @
707e0e02
...
...
@@ -4,6 +4,7 @@ import { Observable } from 'rxjs';
import
{
environment
}
from
'src/environments/environment'
;
import
{
CompetencycourseModel
}
from
'../model/competencycourse.model'
;
import
{
AlertModel
}
from
'../model/alert.model'
;
import
{
CompetencycourseMiniModel
}
from
'../model/competencycourse-mini.model'
;
@
Injectable
({
providedIn
:
'root'
})
...
...
@@ -18,6 +19,9 @@ export class CompetencycourseService {
getList
():
Observable
<
CompetencycourseModel
[]
>
{
return
this
.
http
.
get
<
CompetencycourseModel
[]
>
(
this
.
urlApi
+
"/lists"
)
}
getMiniList
():
Observable
<
CompetencycourseMiniModel
[]
>
{
return
this
.
http
.
get
<
CompetencycourseMiniModel
[]
>
(
this
.
urlApi
+
"/mini/lists"
)
}
post
(
body
:
CompetencycourseModel
):
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