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
a832ba11
Commit
a832ba11
authored
Feb 17, 2025
by
Nakarin Luankla
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UPDATEเพิ่มการเก็บลิ้ง myLearn
parent
ad8285ad
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
207 additions
and
79 deletions
+207
-79
development-course.component.html
...tion/development-course/development-course.component.html
+4
-0
development-course.component.ts
...ration/development-course/development-course.component.ts
+5
-4
sub-job-competency.component.html
...ency/sub-job-competency/sub-job-competency.component.html
+93
-34
sub-job-competency.component.ts
...etency/sub-job-competency/sub-job-competency.component.ts
+93
-33
assessment-types.component.html
...rfomance/assessment-types/assessment-types.component.html
+9
-8
competencycourse.model.ts
src/app/shared/model/competencycourse.model.ts
+3
-0
IMPORT_MJOBCODEV2.xlsx
src/assets/template/IMPORT_MJOBCODEV2.xlsx
+0
-0
No files found.
src/app/components/competency-assessment/course-registration/development-course/development-course.component.html
View file @
a832ba11
...
@@ -217,6 +217,8 @@
...
@@ -217,6 +217,8 @@
<label
for=
"detail_eng"
class=
"ti-form-label mt-2rem"
>
หัวข้อเรื่อง
</label>
<label
for=
"detail_eng"
class=
"ti-form-label mt-2rem"
>
หัวข้อเรื่อง
</label>
<textarea
type=
"text"
id=
"detail_eng"
class=
"ti-form-input"
rows=
"4"
cols=
"50"
<textarea
type=
"text"
id=
"detail_eng"
class=
"ti-form-input"
rows=
"4"
cols=
"50"
[(
ngModel
)]="
dataSelect
.
topic
"
>
</textarea>
[(
ngModel
)]="
dataSelect
.
topic
"
>
</textarea>
<label
for=
"input-label"
class=
"ti-form-label"
>
Link myLearn
</label>
<input
type=
"text"
id=
"input-label"
class=
"ti-form-input h-10"
[(
ngModel
)]="
dataSelect
.
courseLinkMylearn
"
>
<div
class=
"flex justify-end mt-3rem mb-1rem space-x-4"
>
<div
class=
"flex justify-end mt-3rem mb-1rem space-x-4"
>
<button
type=
"button"
<button
type=
"button"
class=
"hs-dropdown-toggle ti-btn ti-border font-medium bg-white text-gray-700 shadow-sm align-middle hover:bg-gray-50 focus:ring-offset-white focus:ring-primary dark:bg-bgdark dark:hover:bg-black/20 dark:border-white/10 dark:text-white/70 dark:hover:text-white dark:focus:ring-offset-white/10"
class=
"hs-dropdown-toggle ti-btn ti-border font-medium bg-white text-gray-700 shadow-sm align-middle hover:bg-gray-50 focus:ring-offset-white focus:ring-primary dark:bg-bgdark dark:hover:bg-black/20 dark:border-white/10 dark:text-white/70 dark:hover:text-white dark:focus:ring-offset-white/10"
...
@@ -289,6 +291,8 @@
...
@@ -289,6 +291,8 @@
<label
for=
"detail_eng"
class=
"ti-form-label mt-2rem"
>
หัวข้อเรื่อง
</label>
<label
for=
"detail_eng"
class=
"ti-form-label mt-2rem"
>
หัวข้อเรื่อง
</label>
<textarea
type=
"text"
id=
"detail_eng"
class=
"ti-form-input"
rows=
"4"
cols=
"50"
<textarea
type=
"text"
id=
"detail_eng"
class=
"ti-form-input"
rows=
"4"
cols=
"50"
[(
ngModel
)]="
dataSelect
.
topic
"
>
</textarea>
[(
ngModel
)]="
dataSelect
.
topic
"
>
</textarea>
<label
for=
"input-label"
class=
"ti-form-label"
>
Link myLearn
</label>
<input
type=
"text"
id=
"input-label"
class=
"ti-form-input h-10"
[(
ngModel
)]="
dataSelect
.
courseLinkMylearn
"
>
<div
class=
"flex justify-end mt-3rem mb-1rem space-x-4"
>
<div
class=
"flex justify-end mt-3rem mb-1rem space-x-4"
>
<button
type=
"button"
<button
type=
"button"
class=
"hs-dropdown-toggle ti-btn ti-border font-medium bg-white text-gray-700 shadow-sm align-middle hover:bg-gray-50 focus:ring-offset-white focus:ring-primary dark:bg-bgdark dark:hover:bg-black/20 dark:border-white/10 dark:text-white/70 dark:hover:text-white dark:focus:ring-offset-white/10"
class=
"hs-dropdown-toggle ti-btn ti-border font-medium bg-white text-gray-700 shadow-sm align-middle hover:bg-gray-50 focus:ring-offset-white focus:ring-primary dark:bg-bgdark dark:hover:bg-black/20 dark:border-white/10 dark:text-white/70 dark:hover:text-white dark:focus:ring-offset-white/10"
...
...
src/app/components/competency-assessment/course-registration/development-course/development-course.component.ts
View file @
a832ba11
...
@@ -8,6 +8,7 @@ export interface DataModel {
...
@@ -8,6 +8,7 @@ export interface DataModel {
edesc
:
string
edesc
:
string
detail
:
string
detail
:
string
topic
:
string
topic
:
string
courseLinkMylearn
:
string
checked
:
boolean
checked
:
boolean
}
}
@
Component
({
@
Component
({
...
@@ -82,7 +83,7 @@ export class DevelopmentCourseComponent {
...
@@ -82,7 +83,7 @@ export class DevelopmentCourseComponent {
// ฟังก์ชันสำหรับการเพิ่ม ลบ หรือแก้ไข ข้อมูล
// ฟังก์ชันสำหรับการเพิ่ม ลบ หรือแก้ไข ข้อมูล
addUser
()
{
addUser
()
{
const
body
=
new
MyCompetencycourseModel
({
competencyCourseId
:
this
.
dataSelect
.
id
,
tdesc
:
this
.
dataSelect
.
name
,
edesc
:
this
.
dataSelect
.
edesc
,
courseTopic
:
this
.
dataSelect
.
topic
,
courseDetail
:
this
.
dataSelect
.
detail
})
const
body
=
new
MyCompetencycourseModel
({
competencyCourseId
:
this
.
dataSelect
.
id
,
tdesc
:
this
.
dataSelect
.
name
,
edesc
:
this
.
dataSelect
.
edesc
,
courseTopic
:
this
.
dataSelect
.
topic
,
courseDetail
:
this
.
dataSelect
.
detail
,
courseLinkMylearn
:
this
.
dataSelect
.
courseLinkMylearn
})
this
.
competencycourseService
.
post
(
body
).
subscribe
((
response
:
any
)
=>
{
this
.
competencycourseService
.
post
(
body
).
subscribe
((
response
:
any
)
=>
{
if
(
response
.
success
)
{
if
(
response
.
success
)
{
this
.
showSuccess
()
this
.
showSuccess
()
...
@@ -91,7 +92,7 @@ export class DevelopmentCourseComponent {
...
@@ -91,7 +92,7 @@ export class DevelopmentCourseComponent {
})
})
}
}
deleteUser
()
{
deleteUser
()
{
const
body
=
new
MyCompetencycourseModel
({
competencyCourseId
:
this
.
dataSelect
.
id
,
tdesc
:
this
.
dataSelect
.
name
,
edesc
:
this
.
dataSelect
.
edesc
,
courseTopic
:
this
.
dataSelect
.
topic
,
courseDetail
:
this
.
dataSelect
.
detail
})
const
body
=
new
MyCompetencycourseModel
({
competencyCourseId
:
this
.
dataSelect
.
id
,
tdesc
:
this
.
dataSelect
.
name
,
edesc
:
this
.
dataSelect
.
edesc
,
courseTopic
:
this
.
dataSelect
.
topic
,
courseDetail
:
this
.
dataSelect
.
detail
,
courseLinkMylearn
:
this
.
dataSelect
.
courseLinkMylearn
})
this
.
competencycourseService
.
delete
(
body
).
subscribe
((
response
:
any
)
=>
{
this
.
competencycourseService
.
delete
(
body
).
subscribe
((
response
:
any
)
=>
{
if
(
response
.
success
)
{
if
(
response
.
success
)
{
this
.
showSuccessDelete
()
this
.
showSuccessDelete
()
...
@@ -104,7 +105,7 @@ export class DevelopmentCourseComponent {
...
@@ -104,7 +105,7 @@ export class DevelopmentCourseComponent {
mockData
:
DataModel
[]
=
[]
mockData
:
DataModel
[]
=
[]
dataLoading
=
false
dataLoading
=
false
dataSelect
:
DataModel
=
{
id
:
""
,
name
:
""
,
edesc
:
""
,
topic
:
""
,
detail
:
""
,
checked
:
false
}
dataSelect
:
DataModel
=
{
id
:
""
,
name
:
""
,
edesc
:
""
,
topic
:
""
,
detail
:
""
,
courseLinkMylearn
:
""
,
checked
:
false
}
mockDataSelect
:
any
=
[]
mockDataSelect
:
any
=
[]
...
@@ -119,7 +120,7 @@ export class DevelopmentCourseComponent {
...
@@ -119,7 +120,7 @@ export class DevelopmentCourseComponent {
this
.
dataLoading
=
true
this
.
dataLoading
=
true
this
.
competencycourseService
.
getList
().
subscribe
({
this
.
competencycourseService
.
getList
().
subscribe
({
next
:
response
=>
{
next
:
response
=>
{
this
.
mockData
=
response
.
map
(
x
=>
({
id
:
x
.
competencyCourseId
,
name
:
x
.
tdesc
,
edesc
:
x
.
edesc
,
topic
:
x
.
courseTopic
,
detail
:
x
.
courseDetail
,
checked
:
false
}))
this
.
mockData
=
response
.
map
(
x
=>
({
id
:
x
.
competencyCourseId
,
name
:
x
.
tdesc
,
edesc
:
x
.
edesc
,
topic
:
x
.
courseTopic
,
detail
:
x
.
courseDetail
,
courseLinkMylearn
:
x
.
courseLinkMylearn
,
checked
:
false
}))
this
.
dataLoading
=
false
this
.
dataLoading
=
false
this
.
searchChange
()
this
.
searchChange
()
this
.
cdr
.
detectChanges
()
this
.
cdr
.
detectChanges
()
...
...
src/app/components/job-detail-components/job-competency/sub-job-competency/sub-job-competency.component.html
View file @
a832ba11
...
@@ -3,12 +3,12 @@
...
@@ -3,12 +3,12 @@
<div
class=
"flex pr-2"
>
<div
class=
"flex pr-2"
>
<div
class=
"px-1"
>
<div
class=
"px-1"
>
<button
type=
"button"
class=
"ti-btn ti-btn-soft-secondary h-20px m-0 shadow-md"
<button
type=
"button"
class=
"ti-btn ti-btn-soft-secondary h-20px m-0 shadow-md"
data-hs-overlay=
"#
company-registration-page-upload-modal
"
>
data-hs-overlay=
"#
supjob-upload-modal"
(
click
)="
fileInput
.
value =
''
;
selectedFile=
null;selectedFileName
=
'กรุณาเลือกไฟล์'
"
>
<i
class=
"ri-add-line"
></i>
<i
class=
"ri-add-line"
></i>
นำเข้าข้อมูล
นำเข้าข้อมูล
</button>
</button>
<a
class=
"mx-2 justify-center -mb-px inline-flex items-center gap-2 font-weight-500 font-size-12px text-center text-secondary border-secondary border-b-2 align-items-end"
<a
class=
"mx-2 justify-center -mb-px inline-flex items-center gap-2 font-weight-500 font-size-12px text-center text-secondary border-secondary border-b-2 align-items-end"
href=
"javascript:void(0);"
>
href=
"javascript:void(0);"
(
click
)="
downloadFile
()"
>
ดาวน์โหลดตัวอย่างไฟล์
ดาวน์โหลดตัวอย่างไฟล์
</a>
</a>
</div>
</div>
...
@@ -18,7 +18,7 @@
...
@@ -18,7 +18,7 @@
<div
class=
"relative shadow-md"
>
<div
class=
"relative shadow-md"
>
<input
type=
"text"
id=
"hs-leading-icon"
name=
"hs-leading-icon"
<input
type=
"text"
id=
"hs-leading-icon"
name=
"hs-leading-icon"
class=
"ti-form-input ltr:pl-11 rtl:pr-11 focus:z-10 "
class=
"ti-form-input ltr:pl-11 rtl:pr-11 focus:z-10 "
placeholder=
"Search by No. or Name"
>
placeholder=
"Search by No. or Name"
[(
ngModel
)]="
search
"
(
ngModelChange
)="
searchChange
()"
>
<div
<div
class=
"absolute inset-y-0 ltr:left-0 rtl:right-0 flex items-center pointer-events-none z-20 ltr:pl-4 rtl:pr-4"
>
class=
"absolute inset-y-0 ltr:left-0 rtl:right-0 flex items-center pointer-events-none z-20 ltr:pl-4 rtl:pr-4"
>
...
@@ -59,52 +59,79 @@
...
@@ -59,52 +59,79 @@
</ng-container>
</ng-container>
</tr>
</tr>
</thead>
</thead>
<tbody>
<tbody
*
ngIf=
"loading"
>
<tr
*
ngFor=
"let item of[
<tr>
['01', '001','Department Manager 1', 'Department Manager 1'],
<td
class=
"text-center"
colspan=
"100%"
>
['02', '002','Department Manager 2', 'Department Manager 2'],
<div
*
ngFor=
"let item of [1,2,3]"
class=
"ti-spinner w-8 h-8 text-secondary mx-1"
role=
"status"
['03', '003','Department 1-HRD', 'Department 1-HRD'],
aria-label=
"loading"
>
['04', '004','Department Manager 3', 'Department Manager 3'],
<span
class=
"sr-only"
>
Loading...
</span>
['05', '005','Department Manager 4', 'Department Manager 4']];let i = index"
>
</div>
<td
class=
"text-center"
>
{{item[0]}}
</td>
</td>
<td
class=
"text-center"
>
{{item[1]}}
</td>
</tr>
<td>
{{item[2]}}
</td>
</tbody>
<td>
{{item[3]}}
</td>
<tbody
*
ngIf=
"!loading&&!jobcodeFilter().length"
>
<tr>
<td
class=
"text-center"
colspan=
"100%"
>
ไม่พบข้อมูล
</td>
</tr>
</tbody>
<tbody
*
ngIf=
"!loading&&jobcodeFilter().length"
>
<tr
*
ngFor=
"let item of jobcodeFilter() |slice:((currentPage-1) * 10) : (((currentPage-1) * 10) + 10);let i = index"
>
<td
class=
"text-center"
>
{{((currentPage-1) * 10)+(i+1)}}
</td>
<td
class=
"text-center"
>
{{item.jobcodeId}}
</td>
<td>
{{item.tdesc}}
</td>
<td>
{{item.edesc}}
</td>
<td
class=
"flex justify-center"
>
<td
class=
"flex justify-center"
>
<i
class=
"ti ti-edit cursor-pointer i-gray fs-l px-1"
data-hs-overlay=
"#sub-job-competency-component-modal-edit"
></i>
<i
class=
"ti ti-edit cursor-pointer i-gray fs-l px-1"
<i
class=
"ti ti-trash cursor-pointer i-gray fs-l px-1"
data-hs-overlay=
"#sub-job-competency-component-alert-delete-modal"
></i>
data-hs-overlay=
"#section-registration-modal-edit"
></i>
<i
class=
"ti ti-trash cursor-pointer i-gray fs-l px-1"
currentModal=
'delete'
data-hs-overlay=
"#section-registration-alert-delete-modal"
></i>
</td>
</td>
</tr>
</tr>
</tbody>
</tbody>
</table>
</table>
</div>
</div>
<ul
class=
"nav-tabs"
>
<nav
class=
"pagination-style-3 overflow-auto my-5"
*
ngIf=
"page.length"
>
<div
class=
"pagination-style-3 overflow-auto my-5"
>
<div
class=
"box-body"
>
<nav
class=
"pagination-style-3 overflow-auto"
>
<ul
class=
"ti-pagination"
>
<ul
class=
"ti-pagination"
>
<li>
<li>
<a
aria-label=
"anchor"
class=
"page-link"
href=
"javascript:void(0);"
>
<a
aria-label=
"anchor"
class=
"page-link"
href=
"javascript:void(0);"
(
click
)="
currentPage =
(currentPage-1
||
1
)"
>
<i
class=
"ri-arrow-left-s-line align-middle rtl:rotate-180"
></i>
<i
class=
"ri-arrow-left-s-line align-middle rtl:rotate-180"
></i>
</a>
</a>
</li>
</li>
<li><a
class=
"page-link active"
href=
"javascript:void(0);"
aria-current=
"page"
>
1
</a></li>
<li
*
ngFor=
"let item of page;let f = first;let l = last"
>
<li><a
class=
"page-link"
href=
"javascript:void(0);"
>
2
</a></li>
<ng-container
*
ngIf=
"item==3&¤tPage!=1&¤tPage!=2&¤tPage!=3"
>
<li><a
class=
"page-link"
href=
"javascript:void(0);"
>
3
</a></li>
<a
aria-label=
"anchor"
class=
"page-link"
href=
"javascript:void(0);"
><i
class=
"ri-more-line"
></i>
<li><a
class=
"page-link"
href=
"javascript:void(0);"
>
4
</a></li>
</a>
<li><a
class=
"page-link"
href=
"javascript:void(0);"
>
5
</a></li>
</ng-container>
<li><a
class=
"page-link"
href=
"javascript:void(0);"
>
...
</a></li>
<ng-container
*
ngIf=
"(f||l)||(item==currentPage-1||item==currentPage||item==currentPage+1)"
>
<li><a
class=
"page-link"
href=
"javascript:void(0);"
>
31
</a></li>
<a
class=
"page-link"
href=
"javascript:void(0);"
[
class
.
active
]="
item=
=currentPage"
(
click
)="
currentPage=
item"
>
{{item}}
</a>
</ng-container>
<ng-container
*
ngIf=
"item==page.length-2&¤tPage!=page.length&¤tPage!=page.length-1&¤tPage!=page.length-2"
>
<a
aria-label=
"anchor"
class=
"page-link"
href=
"javascript:void(0);"
><i
class=
"ri-more-line"
></i>
</a>
</ng-container>
</li>
<li>
<li>
<a
aria-label=
"anchor"
class=
"page-link"
href=
"javascript:void(0);"
>
<a
aria-label=
"anchor"
class=
"page-link"
href=
"javascript:void(0);"
(
click
)="
currentPage =
(currentPage
>
page.length-1 ? currentPage: currentPage+1 )">
<i
class=
"ri-arrow-right-s-line align-middle rtl:rotate-180"
></i>
<i
class=
"ri-arrow-right-s-line align-middle rtl:rotate-180"
></i>
</a>
</a>
</li>
</li>
</ul>
</ul>
</nav>
<ul
class=
"nav-tabs mt-3"
>
</div>
<span>
Show {{((currentPage-1) * 10)+1}} to {{jobcodeFilter().length
<10
?
jobcodeFilter
().
length:
</div>
(
currentPage=
=page.length
?
((
currentPage
*
10
)
-
((
currentPage
*
10
)
-
jobcodeFilter
().
length
)
)
:
(
currentPage
*
10
)
)
}}
of
{{
jobcodeFilter
().
length
}}
items
</
span
>
</ul>
</ul>
</nav>
</div>
</div>
...
@@ -208,7 +235,7 @@
...
@@ -208,7 +235,7 @@
ย้อนกลับ
ย้อนกลับ
</button>
</button>
<a
class=
"ti-btn ti-btn-success"
href=
"javascript:void(0);"
<a
class=
"ti-btn ti-btn-success"
href=
"javascript:void(0);"
data-hs-overlay=
"#sub-job-competency-component-alert-edit-modal"
(
click
)="
editBu1
();
showSuccessEdit
()"
>
data-hs-overlay=
"#sub-job-competency-component-alert-edit-modal"
(
click
)="
showSuccessEdit
()"
>
บันทึกข้อมูล
บันทึกข้อมูล
</a>
</a>
</div>
</div>
...
@@ -243,7 +270,7 @@
...
@@ -243,7 +270,7 @@
ย้อนกลับ
ย้อนกลับ
</button>
</button>
<a
class=
"ti-btn ti-btn-success"
href=
"javascript:void(0);"
<a
class=
"ti-btn ti-btn-success"
href=
"javascript:void(0);"
data-hs-overlay=
"#sub-job-competency-component-alert-delete-modal"
(
click
)="
editBu1
();
showSuccessDelete
()"
>
data-hs-overlay=
"#sub-job-competency-component-alert-delete-modal"
(
click
)="
showSuccessDelete
()"
>
ลบข้อมูล
ลบข้อมูล
</a>
</a>
</div>
</div>
...
@@ -251,3 +278,34 @@
...
@@ -251,3 +278,34 @@
</div>
</div>
</div>
</div>
</div>
</div>
<div
id=
"supjob-upload-modal"
class=
"hs-overlay hidden ti-modal"
>
<div
class=
"hs-overlay-open:mt-7 ti-modal-box mt-0 ease-out rounded-md"
>
<div
class=
"ti-modal-header bg-primary !rounded-none !rounded-t-sm"
>
<h5
class=
"text-xxl font-bold text-white"
>
นำเข้า Job Competency
</h5>
</div>
<div
class=
"ti-modal-body max-h-full overflow-hidden ti-modal-content !rounded-t-none !rounded-b-sm"
>
<h1
class=
"mt-2"
style=
"text-align: center;"
>
ไฟล์
</h1>
<div
class=
"mt-2 p-2"
>
<div
class=
"flex rounded-md"
>
<input
#
fileInput
id=
"fileInput"
type=
"file"
(
change
)="
onFileSelected
($
event
)"
hidden
>
<input
type=
"text"
[
value
]="
selectedFileName
"
readonly
(
click
)="
fileInput
.
click
()"
class=
"ti-form-input rounded-none ltr:rounded-l-md rtl:rounded-r-md focus:z-10 cursor-pointer"
>
<button
type=
"button"
(
click
)="
fileInput
.
click
()"
class=
"inline-flex flex-shrink-0 justify-center items-center h-[2.875rem] w-[2.875rem] ltr:rounded-r-md rtl:rounded-l-md border border-transparent font-semibold bg-secondary text-white hover:bg-secondary focus:z-10 focus:outline-none focus:ring-0 focus:ring-secondary transition-all text-sm"
>
<i
class=
"ti ti-upload"
></i>
</button>
</div>
<div
class=
"flex justify-center mt-2rem mb-1rem space-x-4"
>
<button
type=
"submit"
class=
"ti-btn ti-btn-secondary"
data-hs-overlay=
"#section-registration-upload-modal"
(
click
)="
uploadFile
()"
[
class
.
ti-btn-disabled
]="!
selectedFile
"
[
disabled
]="!
selectedFile
"
>
อัปโหลด
</button>
</div>
</div>
</div>
</div>
</div>
\ No newline at end of file
src/app/components/job-detail-components/job-competency/sub-job-competency/sub-job-competency.component.ts
View file @
a832ba11
import
{
Component
,
EventEmitter
,
Input
,
Output
}
from
'@angular/core'
;
import
{
C
hangeDetectorRef
,
C
omponent
,
EventEmitter
,
Input
,
Output
}
from
'@angular/core'
;
import
{
ToastrService
}
from
'ngx-toastr'
;
import
{
ToastrService
}
from
'ngx-toastr'
;
import
{
JobCodeModel
,
MyJobCodeModel
}
from
'src/app/shared/model/job-code.model'
;
import
{
JobModel
,
MyJobModel
}
from
'src/app/shared/model/job.model'
;
import
{
JobModel
,
MyJobModel
}
from
'src/app/shared/model/job.model'
;
import
{
FileService
}
from
'src/app/shared/services/file.service'
;
import
{
JobCodeService
}
from
'src/app/shared/services/่job-code.service'
;
@
Component
({
@
Component
({
...
@@ -11,29 +14,106 @@ import { JobModel, MyJobModel } from 'src/app/shared/model/job.model';
...
@@ -11,29 +14,106 @@ import { JobModel, MyJobModel } from 'src/app/shared/model/job.model';
export
class
SubJobCompetencyComponent
{
export
class
SubJobCompetencyComponent
{
currentPage
=
1
currentPage
=
1
page
=
Array
.
from
({
length
:
1
},
(
_
,
i
)
=>
i
+
1
);
page
=
Array
.
from
({
length
:
1
},
(
_
,
i
)
=>
i
+
1
);
jobList
:
JobModel
[]
=
[]
job
:
JobModel
=
new
MyJobModel
({})
search
=
""
search
=
""
jobCodeList
:
JobCodeModel
[]
=
[]
loading
=
false
selectedFile
:
File
|
null
=
null
;
selectedFileName
:
string
=
'กรุณาเลือกไฟล์'
;
constructor
(
constructor
(
private
toastr
:
ToastrService
private
toastr
:
ToastrService
,
private
fileService
:
FileService
,
private
jobcodeService
:
JobCodeService
,
private
cdr
:
ChangeDetectorRef
,
)
{
}
)
{
}
ngOnInit
():
void
{
ngOnInit
():
void
{
this
.
getListJob
();
}
getListJob
(){
this
.
loading
=
false
this
.
jobcodeService
.
getList
().
subscribe
({
next
:
response
=>
{
this
.
jobCodeList
=
response
.
map
((
x
:
any
)
=>
new
MyJobCodeModel
(
x
))
console
.
log
(
"🚀 ~ SubJobCompetencyComponent ~ this.jobcodeService.getList ~ this.jobCodeList:"
,
this
.
jobCodeList
)
this
.
loading
=
false
this
.
searchChange
()
this
.
cdr
.
detectChanges
()
},
error
:
error
=>
{
this
.
loading
=
false
this
.
cdr
.
detectChanges
()
}
})
}
}
searchChange
()
{
searchChange
()
{
this
.
currentPage
=
1
this
.
currentPage
=
1
this
.
page
=
Array
.
from
({
length
:
Math
.
ceil
(
this
.
job
List
Filter
().
length
/
10
)
},
(
_
,
i
)
=>
i
+
1
);
this
.
page
=
Array
.
from
({
length
:
Math
.
ceil
(
this
.
job
code
Filter
().
length
/
10
)
},
(
_
,
i
)
=>
i
+
1
);
}
}
jobListFilter
()
{
return
this
.
jobList
.
filter
(
x
=>
x
.
jobid
.
includes
(
this
.
search
)
||
jobcodeFilter
()
{
x
.
tdesc
.
includes
(
this
.
search
)
||
return
this
.
jobCodeList
.
filter
(
x
=>
x
.
edesc
.
includes
(
this
.
search
))
x
.
tdesc
.
toLowerCase
().
includes
(
this
.
search
.
toLowerCase
())
||
x
.
edesc
.
toLowerCase
().
includes
(
this
.
search
.
toLowerCase
())
||
x
.
jobcodeId
.
toLowerCase
().
includes
(
this
.
search
.
toLowerCase
())
)
}
}
selectJob
(
job
:
JobModel
)
{
onFileSelected
(
event
:
any
)
{
// this.showSuccess()
this
.
selectedFile
=
event
.
target
.
files
.
length
>
0
?
event
.
target
.
files
[
0
]
:
null
;
this
.
job
=
new
MyJobModel
(
job
)
this
.
selectedFileName
=
this
.
selectedFile
?.
name
||
"กรุณาเลือกไฟล์"
}
}
uploadFile
()
{
if
(
!
this
.
selectedFile
)
{
alert
(
'กรุณาเลือกไฟล์ก่อนอัปโหลด'
)
return
}
const
formData
=
new
FormData
();
formData
.
append
(
'file'
,
this
.
selectedFile
);
// this.bu3ListLoading = true
this
.
fileService
.
upload
(
formData
,
'MJOBCODE_COMPETENCY'
).
subscribe
({
next
:
response
=>
{
if
(
response
.
success
)
{
this
.
showAlert
(
response
.
message
,
'success'
)
// this.getBu3List()
}
else
{
this
.
showAlert
(
response
.
message
,
'error'
)
// this.bu3ListLoading = false
}
},
error
:
error
=>
{
this
.
showAlert
(
error
.
message
,
'error'
)
// this.bu3ListLoading = false
}
})
}
downloadFile
()
{
const
fileName
=
'IMPORT_MJOBCODEV2.xlsx'
this
.
fileService
.
download
(
fileName
).
subscribe
({
next
:
response
=>
{
const
url
=
window
.
URL
.
createObjectURL
(
response
);
const
a
=
document
.
createElement
(
"a"
);
a
.
href
=
url
;
a
.
download
=
fileName
;
document
.
body
.
appendChild
(
a
);
a
.
click
();
document
.
body
.
removeChild
(
a
);
window
.
URL
.
revokeObjectURL
(
url
);
},
error
:
error
=>
{
this
.
showAlert
(
error
.
message
,
'error'
)
}
})
}
showAlert
(
text
:
string
,
type
:
'success'
|
'error'
)
{
this
.
toastr
[
type
](
text
,
'แจ้งเตือน'
,
{
timeOut
:
3000
,
positionClass
:
'toast-top-right'
,
})
}
showSuccessAdd
()
{
showSuccessAdd
()
{
this
.
toastr
.
success
(
'บันทึกข้อมูลสำเร็จ'
,
'เเจ้งเตือน'
,
{
this
.
toastr
.
success
(
'บันทึกข้อมูลสำเร็จ'
,
'เเจ้งเตือน'
,
{
timeOut
:
3000
,
timeOut
:
3000
,
...
@@ -54,27 +134,7 @@ export class SubJobCompetencyComponent {
...
@@ -54,27 +134,7 @@ export class SubJobCompetencyComponent {
positionClass
:
'toast-top-right'
,
positionClass
:
'toast-top-right'
,
});
});
}
}
addBu1
()
{
// this.bu1Service.post(this.bu1).subscribe((response:any) => {
// if (response.success) {
// this.getBu1List()
// }
// })
}
editBu1
()
{
// this.bu1Service.post(this.bu1).subscribe((response:any) => {
// if (response.success) {
// this.getBu1List()
// }
// })
}
deleteJob
(
job
:
JobModel
)
{
// this.bu1Service.delete(new MyBu1Model(bu1)).subscribe((response:any) => {
// if (response.success) {
// this.getBu1List()
// }
// })
}
}
}
src/app/components/performance-management-evaluation/name-registration-perfomance/assessment-types/assessment-types.component.html
View file @
a832ba11
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<div
class=
"flex justify-between"
>
<div
class=
"flex justify-between"
>
<div
class=
"flex pr-2"
>
<div
class=
"flex pr-2"
>
<div
class=
"flex"
>
<div
class=
"flex"
>
<div
class=
"flex items-center"
>
<
!-- <
div class="flex items-center">
<input type="checkbox" class="ti-form-checkbox pointer-events-none" id="hs-default-checkbox"
<input type="checkbox" class="ti-form-checkbox pointer-events-none" id="hs-default-checkbox"
[(ngModel)]="isDataListChecked">
[(ngModel)]="isDataListChecked">
<label for="hs-default-checkbox" class="text-sm text-gray-500 mx-2 pointer-events-none">
<label for="hs-default-checkbox" class="text-sm text-gray-500 mx-2 pointer-events-none">
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
[ngClass]="{'ri-checkbox-multiple-line text-gray-500': !isDataListCheckedAll, 'ri-checkbox-multiple-fill text-primary': isDataListCheckedAll}"></i>
[ngClass]="{'ri-checkbox-multiple-line text-gray-500': !isDataListCheckedAll, 'ri-checkbox-multiple-fill text-primary': isDataListCheckedAll}"></i>
</button>
</button>
<label class="text-sm text-gray-500 ml-2">Select All</label>
<label class="text-sm text-gray-500 ml-2">Select All</label>
</div>
</div>
-->
</div>
</div>
</div>
</div>
<div
class=
"flex justify-end"
>
<div
class=
"flex justify-end"
>
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"px-1"
>
<
!-- <
div class="px-1">
<button type="button" class="ti-btn ti-btn-soft-secondary h-45px m-0 shadow-md"
<button type="button" class="ti-btn ti-btn-soft-secondary h-45px m-0 shadow-md"
(click)="modalStatus='add';dataListSelect()" data-hs-overlay="#assessment-types-modal">
(click)="modalStatus='add';dataListSelect()" data-hs-overlay="#assessment-types-modal">
<i class="ri-add-line"></i>
<i class="ri-add-line"></i>
...
@@ -43,7 +43,7 @@
...
@@ -43,7 +43,7 @@
<i class="ti ti-trash fs-l"></i>
<i class="ti ti-trash fs-l"></i>
Delete
Delete
</button>
</button>
</div>
</div>
-->
<div
class=
"px-1"
>
<div
class=
"px-1"
>
<button
href=
"javascript:void(0);"
class=
"ti-btn ti-btn-soft-warning h-45px m-0 shadow-md"
>
<button
href=
"javascript:void(0);"
class=
"ti-btn ti-btn-soft-warning h-45px m-0 shadow-md"
>
<i
class=
"ti ti-book fs-l"
></i>
<i
class=
"ti ti-book fs-l"
></i>
...
@@ -81,19 +81,20 @@
...
@@ -81,19 +81,20 @@
<tbody
*
ngIf=
"dataListFilter().length"
>
<tbody
*
ngIf=
"dataListFilter().length"
>
<tr
<tr
*
ngFor=
"let item of dataListFilter() | slice:((currentPage-1) * 10) : (((currentPage-1) * 10) + 10);let i = index"
>
*
ngFor=
"let item of dataListFilter() | slice:((currentPage-1) * 10) : (((currentPage-1) * 10) + 10);let i = index"
>
<td
class=
"flex justify-around"
>
<
!-- <
td class="flex justify-around">
<input type="checkbox" class="ti-form-checkbox cursor-pointer" [(ngModel)]="item.check"
<input type="checkbox" class="ti-form-checkbox cursor-pointer" [(ngModel)]="item.check"
(ngModelChange)="dataListCheck()">
(ngModelChange)="dataListCheck()">
<label>{{item.code}}</label>
<label>{{item.code}}</label>
</td>
</td> -->
<td
class=
"text-center"
>
{{item.code}}
</td>
<td>
{{item.nameTypeTh}} ({{item.nameTypeEn}})
</td>
<td>
{{item.nameTypeTh}} ({{item.nameTypeEn}})
</td>
<td>
{{item.name}}
</td>
<td>
{{item.name}}
</td>
<td
class=
"flex justify-center items-center"
>
<td
class=
"flex justify-center items-center"
>
<i
class=
"ti ti-edit cursor-pointer i-gray fs-l px-1"
<i
class=
"ti ti-edit cursor-pointer i-gray fs-l px-1"
(
click
)="
modalStatus=
'edit'
;
dataListSelect
(
item
)"
(
click
)="
modalStatus=
'edit'
;
dataListSelect
(
item
)"
data-hs-overlay=
"#assessment-types-modal"
></i>
data-hs-overlay=
"#assessment-types-modal"
></i>
<i
class=
"ti ti-trash cursor-pointer i-gray fs-l px-1"
<
!-- <
i class="ti ti-trash cursor-pointer i-gray fs-l px-1"
data-hs-overlay=
"#assessment-types-delete-modal"
></i>
data-hs-overlay="#assessment-types-delete-modal"></i>
-->
</td>
</td>
</tr>
</tr>
</tbody>
</tbody>
...
...
src/app/shared/model/competencycourse.model.ts
View file @
a832ba11
...
@@ -5,6 +5,7 @@ export interface CompetencycourseModel {
...
@@ -5,6 +5,7 @@ export interface CompetencycourseModel {
tdesc
:
string
tdesc
:
string
courseDetail
:
string
courseDetail
:
string
courseTopic
:
string
courseTopic
:
string
courseLinkMylearn
:
string
}
}
export
class
MyCompetencycourseModel
implements
CompetencycourseModel
{
export
class
MyCompetencycourseModel
implements
CompetencycourseModel
{
...
@@ -14,6 +15,7 @@ export class MyCompetencycourseModel implements CompetencycourseModel {
...
@@ -14,6 +15,7 @@ export class MyCompetencycourseModel implements CompetencycourseModel {
tdesc
:
string
tdesc
:
string
courseDetail
:
string
courseDetail
:
string
courseTopic
:
string
courseTopic
:
string
courseLinkMylearn
:
string
constructor
(
data
:
Partial
<
CompetencycourseModel
>
)
{
constructor
(
data
:
Partial
<
CompetencycourseModel
>
)
{
this
.
competencyCourseId
=
data
.
competencyCourseId
||
""
this
.
competencyCourseId
=
data
.
competencyCourseId
||
""
this
.
companyId
=
data
.
companyId
||
""
this
.
companyId
=
data
.
companyId
||
""
...
@@ -21,6 +23,7 @@ export class MyCompetencycourseModel implements CompetencycourseModel {
...
@@ -21,6 +23,7 @@ export class MyCompetencycourseModel implements CompetencycourseModel {
this
.
tdesc
=
data
.
tdesc
||
""
this
.
tdesc
=
data
.
tdesc
||
""
this
.
courseDetail
=
data
.
courseDetail
||
""
this
.
courseDetail
=
data
.
courseDetail
||
""
this
.
courseTopic
=
data
.
courseTopic
||
""
this
.
courseTopic
=
data
.
courseTopic
||
""
this
.
courseLinkMylearn
=
data
.
courseLinkMylearn
||
""
}
}
}
}
src/assets/template/IMPORT_MJOBCODEV2.xlsx
0 → 100644
View file @
a832ba11
File added
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