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
b4ff8dbf
Commit
b4ff8dbf
authored
Apr 16, 2025
by
Nattana Chaiyamat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ข้อมูลทั่วไป
parent
86f746d2
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
8 deletions
+19
-8
role-permission-config.component.ts
...ole-permission-config/role-permission-config.component.ts
+1
-0
user-settings.component.ts
...account-settings/user-settings/user-settings.component.ts
+1
-0
sub-employee-registration.component.ts
...loyee-registration/sub-employee-registration.component.ts
+1
-0
import-data.component.html
...-detail-management/import-data/import-data.component.html
+14
-8
import-data.component.ts
...ob-detail-management/import-data/import-data.component.ts
+1
-0
work-detail.component.ts
...omponents/job-detail/work-detail/work-detail.component.ts
+1
-0
No files found.
src/app/components/company-components/account-settings/role-permission-config/role-permission-config.component.ts
View file @
b4ff8dbf
...
...
@@ -70,6 +70,7 @@ export class RolePermissionConfigComponent {
getConfigList
()
{
this
.
configPermission
.
loading
=
true
this
.
configPermission
.
dataList
=
[]
this
.
selectedItems
.
data
.
clear
()
this
.
configPermissionService
.
getList
().
subscribe
({
next
:
response
=>
{
this
.
configPermission
.
dataList
=
response
.
map
(
x
=>
{
...
...
src/app/components/company-components/account-settings/user-settings/user-settings.component.ts
View file @
b4ff8dbf
...
...
@@ -166,6 +166,7 @@ export class UserSettingsComponent {
getUserList
()
{
this
.
user
.
loading
=
true
this
.
selectedItems
.
data
.
clear
()
this
.
userService
.
getList
().
subscribe
({
next
:
response
=>
{
this
.
user
.
dataList
=
response
.
map
(
x
=>
{
...
...
src/app/components/company-components/employee-registration/sub-employee-registration/sub-employee-registration.component.ts
View file @
b4ff8dbf
...
...
@@ -514,6 +514,7 @@ export class SubEmployeeRegistrationComponent {
getEmployeeList
()
{
this
.
employee
.
loading
=
true
this
.
selectedItems
.
data
.
clear
()
this
.
employeeService
.
getList
().
subscribe
({
next
:
response
=>
{
this
.
employee
.
dataList
=
response
.
map
(
x
=>
{
...
...
src/app/components/job-detail-components/job-detail-management/import-data/import-data.component.html
View file @
b4ff8dbf
...
...
@@ -28,6 +28,13 @@
Add
</button>
</div>
<div
class=
"px-1"
>
<button
type=
"button"
class=
"ti-btn ti-btn-soft-danger h-45px m-0 shadow-md"
data-hs-overlay=
"#company-registration-page-alert-modal"
(
click
)="
currentModal=
'delete'
"
>
<i
class=
"ri-delete-bin-6-line"
></i>
Delete
</button>
</div>
</div>
</div>
...
...
@@ -36,7 +43,6 @@
[
columns
]="
columns
"
[
selectedItems
]="
selectedItems
"
modalName=
"#sub-job-competency-component-modal-edit"
(
sendSelectData
)="
currentModal=
'edit'
;
edit
($
event
)"
(
sendSelectedItems
)="
onSelectItemChange
($
event
)"
>
</app-datagrid-syncfution>
</div>
...
...
@@ -75,12 +81,6 @@
Clear
</button>
</div>
<!-- <div class="px-1">
<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>
Help
</button>
</div> -->
</div>
</div>
<div
class=
"ti-modal-body"
style=
"padding-top: 0px;"
>
...
...
@@ -196,8 +196,13 @@
ยืนยันการบันทึกข้อมูลหรือไม่
</ng-container>
<ng-container
*
ngIf=
"currentModal=='delete'"
>
<ng-container
*
ngIf=
"numSelectItem()"
>
ยืนยันการลบข้อมูลหรือไม่
</ng-container>
<ng-container
*
ngIf=
"!numSelectItem()"
>
เลือกข้อมูลที่ต้องการลบ
</ng-container>
</ng-container>
</p>
<div
class=
"flex justify-end mt-2rem mb-1rem"
>
...
...
@@ -219,7 +224,8 @@
ย้อนกลับ
</button>
<a
class=
"ti-btn ti-btn-danger"
href=
"javascript:void(0);"
data-hs-overlay=
"#company-registration-page-alert-modal"
(
click
)="
deleteJob
()"
>
data-hs-overlay=
"#company-registration-page-alert-modal"
(
click
)="
deleteJob
()"
*
ngIf=
"numSelectItem()"
>
ลบข้อมูล
</a>
</ng-container>
...
...
src/app/components/job-detail-components/job-detail-management/import-data/import-data.component.ts
View file @
b4ff8dbf
...
...
@@ -131,6 +131,7 @@ export class ImportDataComponent {
getListJob
()
{
this
.
loading
=
false
this
.
selectedItems
.
data
.
clear
()
this
.
jobcodeService
.
getList
().
subscribe
({
next
:
response
=>
{
this
.
jobCodeList
=
response
.
map
((
x
:
any
)
=>
{
...
...
src/app/components/job-detail-components/job-detail/work-detail/work-detail.component.ts
View file @
b4ff8dbf
...
...
@@ -55,6 +55,7 @@ export class WorkDetailComponent {
}
getListJob
()
{
this
.
loading
=
false
this
.
selectedItems
.
data
.
clear
()
this
.
jobcodeService
.
getList
().
subscribe
({
next
:
response
=>
{
this
.
jobCodeList
=
response
.
map
((
x
:
any
)
=>
{
...
...
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