Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
myjob-manage
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
myjob-manage
Commits
a5f0f15f
Commit
a5f0f15f
authored
Jul 07, 2025
by
Natthaphat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ทะเบียนประเทศ, ทะเบียนประเภท
parent
81cfe32e
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
996 additions
and
2 deletions
+996
-2
common.module.ts
src/app/DPU/common/common.module.ts
+10
-0
category-company.component.css
...epartment/category-company/category-company.component.css
+0
-0
category-company.component.html
...partment/category-company/category-company.component.html
+198
-0
category-company.component.spec.ts
...tment/category-company/category-company.component.spec.ts
+28
-0
category-company.component.ts
...department/category-company/category-company.component.ts
+228
-0
country-registration.component.css
...t/country-registration/country-registration.component.css
+0
-0
country-registration.component.html
.../country-registration/country-registration.component.html
+198
-0
country-registration.component.spec.ts
...untry-registration/country-registration.component.spec.ts
+28
-0
country-registration.component.ts
...nt/country-registration/country-registration.component.ts
+234
-0
category-company.service.ts
src/app/DPU/services/category-company.service.ts
+30
-0
country.service.ts
src/app/DPU/services/country.service.ts
+30
-0
nav.service.ts
src/app/shared/services/nav.service.ts
+2
-0
en.json
src/assets/i18n/en.json
+5
-1
th.json
src/assets/i18n/th.json
+5
-1
No files found.
src/app/DPU/common/common.module.ts
View file @
a5f0f15f
...
...
@@ -42,6 +42,16 @@ export const admin: Routes = [
import
(
'./company-department/company-department.component'
).
then
((
m
)
=>
m
.
CompanyDepartmentComponent
),
},
{
path
:
'country-registration'
,
loadComponent
:
()
=>
import
(
'./company-department/country-registration/country-registration.component'
).
then
((
m
)
=>
m
.
CountryRegistrationComponent
),
},
{
path
:
'category-company'
,
loadComponent
:
()
=>
import
(
'./company-department/category-company/category-company.component'
).
then
((
m
)
=>
m
.
CategoryCompanyComponent
),
},
{
path
:
'admin-manage'
,
loadComponent
:
()
=>
import
(
'./admin-manage/admin-manage.component'
).
then
((
m
)
=>
m
.
AdminManageComponent
),
...
...
src/app/DPU/common/company-department/category-company/category-company.component.css
0 → 100644
View file @
a5f0f15f
src/app/DPU/common/company-department/category-company/category-company.component.html
0 → 100644
View file @
a5f0f15f
<app-page-header
[
title
]="'จัดการทะเบียนประเภท'"
[
activeTitle
]="'ผู้ดูแลระบบ'"
[
title1
]="'จัดการทะเบียนประเภท'"
></app-page-header>
<div
class=
"grid grid-cols-12 gap-6"
>
<div
class=
"xl:col-span-12 col-span-12"
>
<div
class=
"box"
>
<div
class=
"box-header justify-between"
>
<div
class=
"box-title"
>
{{ 'All List' | translate}}
<span
class=
"badge bg-light text-default rounded-full ms-1 text-[0.75rem] align-middle"
>
{{itemsList.length}}
</span>
</div>
<div
class=
"flex flex-wrap gap-2"
>
<a
href=
"javascript:void(0);"
class=
"hs-dropdown-toggle ti-btn ti-btn-primary-full me-2"
(
click
)="
new
()"
data-hs-overlay=
"#modal-detail"
><i
class=
"ri-add-line font-semibold align-middle"
></i>
{{ 'Create' |
translate}}
</a>
<a
href=
"javascript:void(0);"
class=
"hs-dropdown-toggle ti-btn ti-btn-danger-full me-2"
*
ngIf=
"someSelected"
(
click
)="
deleteSelect
()"
><i
class=
"ri-delete-bin-line font-semibold align-middle"
></i>
{{ 'Delete' |
translate}}
</a>
<div>
<input
class=
"form-control form-control"
type=
"text"
placeholder=
"ค้นหาประเภท"
aria-label=
".form-control-sm example"
[(
ngModel
)]='
searchTerm
'
>
</div>
</div>
</div>
<div
class=
"box-body"
>
<div
class=
"table-responsive"
>
<table
class=
"table whitespace-nowrap min-w-full ti-custom-table-hover"
>
<thead>
<tr
class=
"border-b border-defaultborder"
>
<th
scope=
"col"
class=
"!text-start"
>
<input
class=
"form-check-input check-all"
type=
"checkbox"
id=
"all-products"
(
change
)="
toggleAll
($
event
)"
[
checked
]="
allSelected
"
aria-label=
"..."
>
</th>
<th
scope=
"col"
class=
"text-start"
>
{{ 'Category ID' | translate}}
</th>
<th
scope=
"col"
class=
"text-start"
>
{{ 'Description(TH)' | translate}}
</th>
<th
scope=
"col"
class=
"text-start"
>
{{ 'Description(ENG)' | translate}}
</th>
<th
scope=
"col"
class=
"text-start"
>
{{ 'Action' | translate}}
</th>
<th
scope=
"col"
class=
"text-start"
></th>
</tr>
</thead>
<tbody>
@if (filterList.length > 0) {
@for(item of filterList;track filterList){
<tr
class=
"border border-defaultborder dark:border-defaultborder/10"
>
<td
class=
"product-checkbox"
><input
class=
"form-check-input"
type=
"checkbox"
[
checked
]="
selectedItems
.
get
(
item
.
categoryId
)"
(
change
)="
onCheckboxChange
(
item
.
categoryId
)"
aria-label=
"..."
value=
""
>
</td>
<td>
<div>
<span
class=
"block"
>
{{item.categoryId}}
</span>
</div>
</td>
<td>
<div>
<span>
{{item.thName}}
</span>
</div>
</td>
<td>
<div>
<span>
{{item.engName}}
</span>
</div>
</td>
<td>
<div
class=
"flex flex-row items-center !gap-2 "
>
<a
aria-label=
"anchor"
(
click
)="
view
(
item
)"
data-hs-overlay=
"#modal-detail"
class=
"ti-btn ti-btn-wave !gap-0 !m-0 bg-info/10 text-info hover:bg-info hover:text-white hover:border-info"
><i
class=
"ri-pencil-line"
></i></a>
<a
aria-label=
"anchor"
href=
"javascript:void(0);"
(
click
)="
deletecategory
(
item
)"
class=
"ti-btn ti-btn-wave product-btn !gap-0 !m-0 bg-danger/10 text-danger hover:bg-danger hover:text-white hover:border-danger"
><i
class=
"ri-delete-bin-line"
></i></a>
</div>
</td>
</tr>
}
} @else {
<tr>
<td
[
attr
.
colspan
]="
6
"
class=
"text-center py-4"
>
<ng-container
*
ngIf=
"itemsList.length === 0 && !searchTerm"
>
<p>
กำลังโหลดข้อมูล หรือไม่มีข้อมูลเลย...
</p>
</ng-container>
<ng-container
*
ngIf=
"itemsList.length > 0 && filterList.length === 0 && searchTerm"
>
<p>
ไม่พบข้อมูลที่ค้นหา...
</p>
</ng-container>
</td>
</tr>
}
</tbody>
</table>
</div>
</div>
<div
class=
"box-footer"
>
<div
class=
"flex items-center flex-wrap overflow-auto"
*
ngIf=
"filterList.length > 0"
>
<div
class=
"mb-2 sm:mb-0"
>
<div>
{{'Showing' | translate}} {{filterList.length}} {{'entries'
| translate}}
<i
class=
"bi bi-arrow-right ms-2 font-semibold"
></i>
</div>
</div>
<div
class=
"ms-auto"
>
<nav
aria-label=
"Page navigation"
>
<ul
class=
"ti-pagination mb-0"
>
<li
*
ngIf=
"pageIndex>0"
class=
"page-item {{pageIndex==0 ? 'disabled' : ''}}"
><a
class=
"page-link px-3 py-[0.375rem] cursor-pointer"
(
click
)="
pageIndex =
pageIndex-1;updatePagedItems()"
>
{{'Previous' | translate}}
</a></li>
<li
class=
"page-item"
><a
class=
"page-link px-3 py-[0.375rem]"
href=
"javascript:void(0);"
*
ngIf=
"pageIndex-1>0"
(
click
)="
pageIndex =
pageIndex-2;updatePagedItems()"
>
{{pageIndex-1}}
</a>
</li>
<li
class=
"page-item"
><a
class=
"page-link px-3 py-[0.375rem]"
href=
"javascript:void(0);"
*
ngIf=
"pageIndex>0 && ((pageIndex-1)*10 < (searchTerm == '' ? itemsList.length : filterList.length))"
(
click
)="
pageIndex =
pageIndex-1;updatePagedItems()"
>
{{pageIndex}}
</a></li>
<li
class=
"page-item"
><a
class=
"page-link active px-3 py-[0.375rem]"
href=
"javascript:void(0);"
>
{{pageIndex +1}}
</a>
</li>
<li
class=
"page-item"
><a
class=
"page-link px-3 py-[0.375rem]"
href=
"javascript:void(0);"
*
ngIf=
"(pageIndex+1)*10 < (searchTerm == '' ? itemsList.length : filterList.length)"
(
click
)="
pageIndex =
pageIndex+1;updatePagedItems()"
>
{{pageIndex +2}}
</a></li>
<li
class=
"page-item"
><a
class=
"page-link px-3 py-[0.375rem]"
href=
"javascript:void(0);"
*
ngIf=
"(pageIndex+2)*10 < (searchTerm == '' ? itemsList.length : filterList.length)"
(
click
)="
pageIndex =
pageIndex+2;updatePagedItems()"
>
{{pageIndex +3}}
</a></li>
<li
*
ngIf=
"(pageIndex+1)*10 < (searchTerm == '' ? itemsList.length : filterList.length)"
class=
"page-item"
><a
class=
"page-link px-3 py-[0.375rem] cursor-pointer"
(
click
)="
pageIndex =
pageIndex+1;updatePagedItems()"
>
{{'Next' |
translate}}
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
<div
id=
"modal-detail"
class=
"hs-overlay hidden ti-modal [--overlay-backdrop:static]"
>
<div
class=
"hs-overlay-open:mt-7 ti-modal-box mt-0 ease-out"
>
<div
class=
"ti-modal-content"
>
<div
class=
"ti-modal-header"
>
<h6
class=
"modal-title text-[1rem] font-semibold text-defaulttextcolor"
id=
"mail-ComposeLabel"
>
{{ (modalStatus == 'add' ? ('Create' | translate) : ('Edit' | translate)) + ' ' + ('Category' | translate) }}
</h6>
<button
type=
"button"
class=
"hs-dropdown-toggle !text-[1rem] !font-semibold !text-defaulttextcolor"
data-hs-overlay=
"#modal-detail"
#
closeModal
>
<span
class=
"sr-only"
>
{{'Close' | translate}}
</span>
<i
class=
"ri-close-line"
></i>
</button>
</div>
<div
class=
"ti-modal-body px-4"
>
<div
class=
"grid grid-cols-12 gap-4"
>
<div
class=
"xl:col-span-12 col-span-12"
>
<label
for=
"deal-title"
class=
"form-label"
>
{{'Category ID' | translate}}
</label>
<input
type=
"text"
class=
"form-control"
[
ngClass
]="{
'!
bg-input-readonly
'
:
modalStatus =
==
'
edit
'
}"
id=
"deal-title"
placeholder=
""
[(
ngModel
)]="
category
.
categoryId
"
[
readonly
]="
modalStatus =
==
'
edit
'"
>
<div
class=
"text-danger"
*
ngIf=
"!category.categoryId"
>
{{'Please fill in information' | translate}}
</div>
</div>
<div
class=
"xl:col-span-6 col-span-12"
>
<label
for=
"deal-title"
class=
"form-label"
>
{{'Description(TH)' | translate}}
</label>
<input
type=
"text"
class=
"form-control"
id=
"deal-title"
placeholder=
""
[(
ngModel
)]="
category
.
thName
"
>
<div
class=
"text-danger"
*
ngIf=
"!category.thName"
>
{{'Please fill in information' | translate}}
</div>
</div>
<div
class=
"xl:col-span-6 col-span-12"
>
<label
for=
"deal-title"
class=
"form-label"
>
{{'Description(ENG)' | translate}}
</label>
<input
type=
"text"
class=
"form-control"
id=
"deal-title"
placeholder=
""
[(
ngModel
)]="
category
.
engName
"
>
<div
class=
"text-danger"
*
ngIf=
"!category.engName"
>
{{'Please fill in information' | translate}}
</div>
</div>
</div>
</div>
<div
class=
"ti-modal-footer"
>
<button
type=
"button"
class=
"hs-dropdown-toggle ti-btn ti-btn-light align-middle"
data-hs-overlay=
"#modal-detail"
>
{{'Cancel' | translate}}
</button>
<button
type=
"button"
(
click
)="
save
()"
class=
"ti-btn bg-primary text-white !font-medium"
>
{{'Save' |
translate}}
</button>
</div>
</div>
</div>
</div>
\ No newline at end of file
src/app/DPU/common/company-department/category-company/category-company.component.spec.ts
0 → 100644
View file @
a5f0f15f
/* tslint:disable:no-unused-variable */
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
By
}
from
'@angular/platform-browser'
;
import
{
DebugElement
}
from
'@angular/core'
;
import
{
CategoryCompanyComponent
}
from
'./category-company.component'
;
describe
(
'CategoryCompanyComponent'
,
()
=>
{
let
component
:
CategoryCompanyComponent
;
let
fixture
:
ComponentFixture
<
CategoryCompanyComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
CategoryCompanyComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
CategoryCompanyComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should create'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
src/app/DPU/common/company-department/category-company/category-company.component.ts
0 → 100644
View file @
a5f0f15f
import
{
Component
,
ElementRef
,
OnInit
,
TemplateRef
,
ViewChild
}
from
'@angular/core'
;
import
{
TranslateModule
,
TranslateService
}
from
'@ngx-translate/core'
;
import
{
MatDialog
}
from
'@angular/material/dialog'
;
import
swal
from
'sweetalert'
;
import
{
CommonModule
}
from
'@angular/common'
;
import
{
SharedModule
}
from
'../../../../shared/shared.module'
;
import
{
NgSelectModule
}
from
'@ng-select/ng-select'
;
import
{
FormsModule
}
from
'@angular/forms'
;
import
{
MatPaginator
}
from
'@angular/material/paginator'
;
import
{
FileUploadModule
}
from
'ng2-file-upload'
;
import
{
PdpaConfigComponent
}
from
'../../pdpa-manage/pdpa-config/pdpa-config.component'
;
import
{
QuillModule
}
from
'ngx-quill'
;
import
{
CategoryModel
}
from
'../../../models/category.model'
;
import
{
CategoryCompanyService
}
from
'../../../services/category-company.service'
;
@
Component
({
standalone
:
true
,
imports
:
[
CommonModule
,
SharedModule
,
TranslateModule
,
NgSelectModule
,
FormsModule
,
MatPaginator
,
FileUploadModule
,
PdpaConfigComponent
,
QuillModule
],
selector
:
'app-category-company'
,
templateUrl
:
'./category-company.component.html'
,
styleUrls
:
[
'./category-company.component.css'
]
})
export
class
CategoryCompanyComponent
implements
OnInit
{
quillConfig
=
{
toolbar
:
[
[
'link'
],
[
'bold'
,
'italic'
,
'underline'
,
'strike'
],
[
'blockquote'
,
'code-block'
],
[{
'header'
:
1
},
{
'header'
:
2
}],
[{
'list'
:
'ordered'
},
{
'list'
:
'bullet'
}],
[{
'script'
:
'sub'
},
{
'script'
:
'super'
}],
[{
'indent'
:
'-1'
},
{
'indent'
:
'+1'
}],
[{
'direction'
:
'rtl'
}],
[{
'size'
:
[
'small'
,
false
,
'large'
,
'huge'
]
}],
[{
'header'
:
[
1
,
2
,
3
,
4
,
5
,
6
,
false
]
}],
[{
'color'
:
[]
},
{
'background'
:
[]
}],
[{
'align'
:
[]
}],
[
'clean'
],
]
};
@
ViewChild
(
'closeModal'
)
public
childModal
?:
ElementRef
;
@
ViewChild
(
'modalDetail'
)
modalDetail
!
:
TemplateRef
<
any
>
;
currentTab
=
1
allSelected
=
false
;
someSelected
=
false
;
itemsList
:
CategoryModel
[]
=
[]
filterList
:
CategoryModel
[]
=
[]
category
:
CategoryModel
=
new
CategoryModel
()
selectedItems
=
new
Map
<
string
,
boolean
>
();
pageIndex
=
0
;
modalStatus
:
"add"
|
"edit"
=
"add"
isSaving
=
false
;
get
searchTerm
():
string
{
return
this
.
_searchTerm
;
}
set
searchTerm
(
val
:
string
)
{
this
.
pageIndex
=
0
;
this
.
allSelected
=
false
this
.
_searchTerm
=
val
;
if
(
val
!=
''
)
{
this
.
filterList
=
this
.
filter
(
val
);
}
else
{
this
.
updatePagedItems
()
}
}
_searchTerm
=
""
;
constructor
(
private
categoryCompanyService
:
CategoryCompanyService
,
public
translate
:
TranslateService
,
private
modal
:
MatDialog
)
{
}
ngOnInit
():
void
{
this
.
categoryCompanyService
.
list
().
subscribe
(
res
=>
{
this
.
itemsList
=
res
.
map
(
item
=>
new
CategoryModel
(
item
,
this
.
translate
));
this
.
filterList
=
[...
this
.
itemsList
];
});
}
filter
(
v
:
string
)
{
return
this
.
itemsList
?.
filter
(
(
x
)
=>
x
.
categoryId
?.
toLowerCase
().
indexOf
(
v
.
toLowerCase
())
!==
-
1
||
x
.
thName
?.
toLowerCase
().
indexOf
(
v
.
toLowerCase
())
!==
-
1
||
x
.
engName
?.
toLowerCase
().
indexOf
(
v
.
toLowerCase
())
!==
-
1
);
}
new
()
{
this
.
modalStatus
=
'add'
this
.
category
=
new
CategoryModel
();
}
view
(
item
:
CategoryModel
)
{
this
.
modalStatus
=
'edit'
;
this
.
category
=
new
CategoryModel
(
item
,
this
.
translate
);
}
save
()
{
swal
({
title
:
"Are you sure?"
,
text
:
"คุณต้องการบันทึกหรือไม่"
,
icon
:
"warning"
,
dangerMode
:
false
,
buttons
:
[
"Cancel"
,
"Confirm"
],
})
.
then
((
willDelete
:
any
)
=>
{
if
(
willDelete
)
{
if
(
this
.
modalStatus
==
'add'
)
{
console
.
log
(
this
.
category
);
this
.
categoryCompanyService
.
post
(
this
.
category
).
subscribe
(
result
=>
{
swal
(
"Save Success!!"
,
"บันทึกเวอร์ชั่นสำเร็จ"
,
"success"
);
this
.
ngOnInit
()
this
.
childModal
?.
nativeElement
.
click
()
})
}
else
if
(
this
.
modalStatus
==
'edit'
)
{
const
respone
=
new
CategoryModel
(
this
.
category
);
this
.
categoryCompanyService
.
post
(
respone
).
subscribe
(
result
=>
{
console
.
log
(
result
)
swal
(
"Update Success!!"
,
"บันทึกเวอร์ชั่นสำเร็จ"
,
"success"
);
this
.
ngOnInit
()
this
.
childModal
?.
nativeElement
.
click
()
})
}
}
});
}
deletecategory
(
item
:
CategoryModel
)
{
const
versionText
=
`
${
this
.
translate
.
instant
(
'category'
)}
:
${
item
.
thName
}
`
;
swal
({
title
:
"Are you sure?"
,
text
:
`Confirm to delete :\n
${
versionText
}
\!`
,
icon
:
"warning"
,
dangerMode
:
true
,
buttons
:
[
"Cancel"
,
"Yes,Delete it!"
],
}).
then
((
willDelete
:
any
)
=>
{
if
(
willDelete
)
{
const
res
=
new
CategoryModel
(
item
)
this
.
categoryCompanyService
.
delete
(
res
).
subscribe
(
result
=>
{
swal
(
"Delete Success!!"
,
"ลบข้อมูลสำเร็จ"
,
"success"
);
this
.
ngOnInit
();
});
}
});
}
deleteSelect
()
{
let
categoryConfig
=
''
;
this
.
selectedItems
.
forEach
((
isSelected
,
res
)
=>
{
if
(
isSelected
)
{
const
category
=
this
.
itemsList
.
find
(
category
=>
category
.
categoryId
===
res
)
as
CategoryModel
;
if
(
category
)
{
categoryConfig
+=
`
${
this
.
translate
.
instant
(
'category'
)}
:
${
category
.
thName
}
\n`
;
}
}
});
swal
({
title
:
"Are you sure?"
,
text
:
categoryConfig
,
icon
:
"warning"
,
dangerMode
:
true
,
buttons
:
[
"Cancel"
,
"Yes, Delete it!"
],
})
.
then
((
willDelete
:
any
)
=>
{
if
(
willDelete
)
{
this
.
selectedItems
.
forEach
((
isSelected
,
res
)
=>
{
if
(
isSelected
)
{
const
category
=
this
.
itemsList
.
find
(
category
=>
category
.
categoryId
===
res
);
if
(
category
)
{
const
newcategory
=
new
CategoryModel
(
category
)
this
.
categoryCompanyService
.
delete
(
newcategory
).
subscribe
(
result
=>
{
swal
(
"Delete Success!!"
,
"ลบข้อมูลที่เลือกสำเร็จ"
,
"success"
);
this
.
ngOnInit
();
});
}
}
});
}
});
}
updatePagedItems
()
{
const
startIndex
=
this
.
pageIndex
*
10
;
const
endIndex
=
startIndex
+
10
;
this
.
filterList
=
this
.
itemsList
.
slice
(
startIndex
,
endIndex
);
}
toggleAll
(
event
:
any
)
{
this
.
allSelected
=
event
.
target
.
checked
;
this
.
selectedItems
.
clear
();
this
.
itemsList
.
forEach
(
item
=>
{
this
.
selectedItems
.
set
(
item
.
categoryId
,
this
.
allSelected
);
});
this
.
someSelected
=
this
.
itemsList
.
some
(
item
=>
this
.
selectedItems
.
get
(
item
.
categoryId
));
}
onCheckboxChange
(
categoryId
:
string
)
{
const
isSelected
=
this
.
selectedItems
.
get
(
categoryId
)
||
false
;
this
.
selectedItems
.
set
(
categoryId
,
!
isSelected
);
this
.
allSelected
=
this
.
itemsList
.
every
(
item
=>
this
.
selectedItems
.
get
(
item
.
categoryId
));
this
.
someSelected
=
this
.
itemsList
.
some
(
item
=>
this
.
selectedItems
.
get
(
item
.
categoryId
));
}
filterEmp
(
empId
:
string
)
{
this
.
category
=
this
.
itemsList
.
filter
(
e
=>
e
.
categoryId
==
empId
)[
0
]
}
}
src/app/DPU/common/company-department/country-registration/country-registration.component.css
0 → 100644
View file @
a5f0f15f
src/app/DPU/common/company-department/country-registration/country-registration.component.html
0 → 100644
View file @
a5f0f15f
<app-page-header
[
title
]="'จัดการทะเบียนประเทศ'"
[
activeTitle
]="'ผู้ดูแลระบบ'"
[
title1
]="'จัดการทะเบียนประเทศ'"
></app-page-header>
<div
class=
"grid grid-cols-12 gap-6"
>
<div
class=
"xl:col-span-12 col-span-12"
>
<div
class=
"box"
>
<div
class=
"box-header justify-between"
>
<div
class=
"box-title"
>
{{ 'All List' | translate}}
<span
class=
"badge bg-light text-default rounded-full ms-1 text-[0.75rem] align-middle"
>
{{itemsList.length}}
</span>
</div>
<div
class=
"flex flex-wrap gap-2"
>
<a
href=
"javascript:void(0);"
class=
"hs-dropdown-toggle ti-btn ti-btn-primary-full me-2"
(
click
)="
new
()"
data-hs-overlay=
"#modal-detail"
><i
class=
"ri-add-line font-semibold align-middle"
></i>
{{ 'Add' |
translate}}
</a>
<a
href=
"javascript:void(0);"
class=
"hs-dropdown-toggle ti-btn ti-btn-danger-full me-2"
*
ngIf=
"someSelected"
(
click
)="
deleteSelect
()"
><i
class=
"ri-delete-bin-line font-semibold align-middle"
></i>
{{ 'Delete' |
translate}}
</a>
<div>
<input
class=
"form-control form-control"
type=
"text"
placeholder=
"ค้นหาประเทศ"
aria-label=
".form-control-sm example"
[(
ngModel
)]='
searchTerm
'
>
</div>
</div>
</div>
<div
class=
"box-body"
>
<div
class=
"table-responsive"
>
<table
class=
"table whitespace-nowrap min-w-full ti-custom-table-hover"
>
<thead>
<tr
class=
"border-b border-defaultborder"
>
<th
scope=
"col"
class=
"!text-start"
>
<input
class=
"form-check-input check-all"
type=
"checkbox"
id=
"all-products"
(
change
)="
toggleAll
($
event
)"
[
checked
]="
allSelected
"
aria-label=
"..."
>
</th>
<th
scope=
"col"
class=
"text-start"
>
{{ 'Country ID' | translate}}
</th>
<th
scope=
"col"
class=
"text-start"
>
{{ 'Description(TH)' | translate}}
</th>
<th
scope=
"col"
class=
"text-start"
>
{{ 'Description(ENG)' | translate}}
</th>
<th
scope=
"col"
class=
"text-start"
>
{{ 'Action' | translate}}
</th>
<th
scope=
"col"
class=
"text-start"
></th>
</tr>
</thead>
<tbody>
@if (filterList.length > 0) {
@for(item of filterList;track filterList){
<tr
class=
"border border-defaultborder dark:border-defaultborder/10"
>
<td
class=
"product-checkbox"
><input
class=
"form-check-input"
type=
"checkbox"
[
checked
]="
selectedItems
.
get
(
item
.
countryId
)"
(
change
)="
onCheckboxChange
(
item
.
countryId
)"
aria-label=
"..."
value=
""
>
</td>
<td>
<div>
<span
class=
"block"
>
{{item.countryId}}
</span>
</div>
</td>
<td>
<div>
<span>
{{item.thName}}
</span>
</div>
</td>
<td>
<div>
<span>
{{item.engName}}
</span>
</div>
</td>
<td>
<div
class=
"flex flex-row items-center !gap-2 "
>
<a
aria-label=
"anchor"
(
click
)="
view
(
item
)"
data-hs-overlay=
"#modal-detail"
class=
"ti-btn ti-btn-wave !gap-0 !m-0 bg-info/10 text-info hover:bg-info hover:text-white hover:border-info"
><i
class=
"ri-pencil-line"
></i></a>
<a
aria-label=
"anchor"
href=
"javascript:void(0);"
(
click
)="
deleteCountry
(
item
)"
class=
"ti-btn ti-btn-wave product-btn !gap-0 !m-0 bg-danger/10 text-danger hover:bg-danger hover:text-white hover:border-danger"
><i
class=
"ri-delete-bin-line"
></i></a>
</div>
</td>
</tr>
}
} @else {
<tr>
<td
[
attr
.
colspan
]="
6
"
class=
"text-center py-4"
>
<ng-container
*
ngIf=
"itemsList.length === 0 && !searchTerm"
>
<p>
กำลังโหลดข้อมูล หรือไม่มีข้อมูลเลย...
</p>
</ng-container>
<ng-container
*
ngIf=
"itemsList.length > 0 && filterList.length === 0 && searchTerm"
>
<p>
ไม่พบข้อมูลที่ค้นหา...
</p>
</ng-container>
</td>
</tr>
}
</tbody>
</table>
</div>
</div>
<div
class=
"box-footer"
>
<div
class=
"flex items-center flex-wrap overflow-auto"
*
ngIf=
"filterList.length > 0"
>
<div
class=
"mb-2 sm:mb-0"
>
<div>
{{'Showing' | translate}} {{filterList.length}} {{'entries'
| translate}}
<i
class=
"bi bi-arrow-right ms-2 font-semibold"
></i>
</div>
</div>
<div
class=
"ms-auto"
>
<nav
aria-label=
"Page navigation"
>
<ul
class=
"ti-pagination mb-0"
>
<li
*
ngIf=
"pageIndex>0"
class=
"page-item {{pageIndex==0 ? 'disabled' : ''}}"
><a
class=
"page-link px-3 py-[0.375rem] cursor-pointer"
(
click
)="
pageIndex =
pageIndex-1;updatePagedItems()"
>
{{'Previous' | translate}}
</a></li>
<li
class=
"page-item"
><a
class=
"page-link px-3 py-[0.375rem]"
href=
"javascript:void(0);"
*
ngIf=
"pageIndex-1>0"
(
click
)="
pageIndex =
pageIndex-2;updatePagedItems()"
>
{{pageIndex-1}}
</a>
</li>
<li
class=
"page-item"
><a
class=
"page-link px-3 py-[0.375rem]"
href=
"javascript:void(0);"
*
ngIf=
"pageIndex>0 && ((pageIndex-1)*10 < (searchTerm == '' ? itemsList.length : filterList.length))"
(
click
)="
pageIndex =
pageIndex-1;updatePagedItems()"
>
{{pageIndex}}
</a></li>
<li
class=
"page-item"
><a
class=
"page-link active px-3 py-[0.375rem]"
href=
"javascript:void(0);"
>
{{pageIndex +1}}
</a>
</li>
<li
class=
"page-item"
><a
class=
"page-link px-3 py-[0.375rem]"
href=
"javascript:void(0);"
*
ngIf=
"(pageIndex+1)*10 < (searchTerm == '' ? itemsList.length : filterList.length)"
(
click
)="
pageIndex =
pageIndex+1;updatePagedItems()"
>
{{pageIndex +2}}
</a></li>
<li
class=
"page-item"
><a
class=
"page-link px-3 py-[0.375rem]"
href=
"javascript:void(0);"
*
ngIf=
"(pageIndex+2)*10 < (searchTerm == '' ? itemsList.length : filterList.length)"
(
click
)="
pageIndex =
pageIndex+2;updatePagedItems()"
>
{{pageIndex +3}}
</a></li>
<li
*
ngIf=
"(pageIndex+1)*10 < (searchTerm == '' ? itemsList.length : filterList.length)"
class=
"page-item"
><a
class=
"page-link px-3 py-[0.375rem] cursor-pointer"
(
click
)="
pageIndex =
pageIndex+1;updatePagedItems()"
>
{{'Next' |
translate}}
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
<div
id=
"modal-detail"
class=
"hs-overlay hidden ti-modal [--overlay-backdrop:static]"
>
<div
class=
"hs-overlay-open:mt-7 ti-modal-box mt-0 ease-out"
>
<div
class=
"ti-modal-content"
>
<div
class=
"ti-modal-header"
>
<h6
class=
"modal-title text-[1rem] font-semibold text-defaulttextcolor"
id=
"mail-ComposeLabel"
>
{{ (modalStatus == 'add' ? ('Create' | translate) : ('Edit' | translate)) + ' ' + ('Country' | translate) }}
</h6>
<button
type=
"button"
class=
"hs-dropdown-toggle !text-[1rem] !font-semibold !text-defaulttextcolor"
data-hs-overlay=
"#modal-detail"
#
closeModal
>
<span
class=
"sr-only"
>
{{'Close' | translate}}
</span>
<i
class=
"ri-close-line"
></i>
</button>
</div>
<div
class=
"ti-modal-body px-4"
>
<div
class=
"grid grid-cols-12 gap-4"
>
<div
class=
"xl:col-span-12 col-span-12"
>
<label
for=
"deal-title"
class=
"form-label"
>
{{'Country ID' | translate}}
</label>
<input
type=
"text"
class=
"form-control"
[
ngClass
]="{
'!
bg-input-readonly
'
:
modalStatus =
==
'
edit
'
}"
id=
"deal-title"
placeholder=
""
[(
ngModel
)]="
country
.
countryId
"
[
readonly
]="
modalStatus =
==
'
edit
'"
>
<div
class=
"text-danger"
*
ngIf=
"!country.countryId"
>
{{'Please fill in information' | translate}}
</div>
</div>
<div
class=
"xl:col-span-6 col-span-12"
>
<label
for=
"deal-title"
class=
"form-label"
>
{{'Description(TH)' | translate}}
</label>
<input
type=
"text"
class=
"form-control"
id=
"deal-title"
placeholder=
""
[(
ngModel
)]="
country
.
thName
"
>
<div
class=
"text-danger"
*
ngIf=
"!country.thName"
>
{{'Please fill in information' | translate}}
</div>
</div>
<div
class=
"xl:col-span-6 col-span-12"
>
<label
for=
"deal-title"
class=
"form-label"
>
{{'Description(ENG)' | translate}}
</label>
<input
type=
"text"
class=
"form-control"
id=
"deal-title"
placeholder=
""
[(
ngModel
)]="
country
.
engName
"
>
<div
class=
"text-danger"
*
ngIf=
"!country.engName"
>
{{'Please fill in information' | translate}}
</div>
</div>
</div>
</div>
<div
class=
"ti-modal-footer"
>
<button
type=
"button"
class=
"hs-dropdown-toggle ti-btn ti-btn-light align-middle"
data-hs-overlay=
"#modal-detail"
>
{{'Cancel' | translate}}
</button>
<button
type=
"button"
(
click
)="
save
()"
class=
"ti-btn bg-primary text-white !font-medium"
>
{{'Save' |
translate}}
</button>
</div>
</div>
</div>
</div>
\ No newline at end of file
src/app/DPU/common/company-department/country-registration/country-registration.component.spec.ts
0 → 100644
View file @
a5f0f15f
/* tslint:disable:no-unused-variable */
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
By
}
from
'@angular/platform-browser'
;
import
{
DebugElement
}
from
'@angular/core'
;
import
{
CountryRegistrationComponent
}
from
'./country-registration.component'
;
describe
(
'CountryRegistrationComponent'
,
()
=>
{
let
component
:
CountryRegistrationComponent
;
let
fixture
:
ComponentFixture
<
CountryRegistrationComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
CountryRegistrationComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
CountryRegistrationComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should create'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
src/app/DPU/common/company-department/country-registration/country-registration.component.ts
0 → 100644
View file @
a5f0f15f
import
{
CommonModule
}
from
"@angular/common"
;
import
{
ChangeDetectionStrategy
,
Component
,
ElementRef
,
TemplateRef
,
ViewChild
}
from
'@angular/core'
;
import
{
NgSelectModule
}
from
"@ng-select/ng-select"
;
import
{
TranslateModule
,
TranslateService
}
from
"@ngx-translate/core"
;
import
{
FormsModule
}
from
"@angular/forms"
;
import
swal
from
'sweetalert'
;
import
{
MatPaginator
,
PageEvent
}
from
"@angular/material/paginator"
;
import
{
FileUploadModule
}
from
'ng2-file-upload'
;
import
{
FileItem
,
FileUploader
,
ParsedResponseHeaders
}
from
"ng2-file-upload"
;
import
{
Router
}
from
"@angular/router"
;
import
{
QuillModule
}
from
"ngx-quill"
;
import
{
MatDialog
}
from
"@angular/material/dialog"
;
import
{
SharedModule
}
from
"../../../../shared/shared.module"
;
import
{
PdpaConfigComponent
}
from
"../../pdpa-manage/pdpa-config/pdpa-config.component"
;
import
{
MyPdpaModel
,
PdpaModel
}
from
"../../../models/pdpa.model"
;
import
{
CountryService
}
from
"../../../services/country.service"
;
import
{
CountryModel
}
from
"../../../models/country.model"
;
@
Component
({
selector
:
'app-country-registration'
,
standalone
:
true
,
imports
:
[
CommonModule
,
SharedModule
,
TranslateModule
,
NgSelectModule
,
FormsModule
,
MatPaginator
,
FileUploadModule
,
PdpaConfigComponent
,
QuillModule
],
templateUrl
:
'./country-registration.component.html'
,
styleUrl
:
'./country-registration.component.css'
})
export
class
CountryRegistrationComponent
{
quillConfig
=
{
toolbar
:
[
[
'link'
],
[
'bold'
,
'italic'
,
'underline'
,
'strike'
],
[
'blockquote'
,
'code-block'
],
[{
'header'
:
1
},
{
'header'
:
2
}],
[{
'list'
:
'ordered'
},
{
'list'
:
'bullet'
}],
[{
'script'
:
'sub'
},
{
'script'
:
'super'
}],
[{
'indent'
:
'-1'
},
{
'indent'
:
'+1'
}],
[{
'direction'
:
'rtl'
}],
[{
'size'
:
[
'small'
,
false
,
'large'
,
'huge'
]
}],
[{
'header'
:
[
1
,
2
,
3
,
4
,
5
,
6
,
false
]
}],
[{
'color'
:
[]
},
{
'background'
:
[]
}],
[{
'align'
:
[]
}],
[
'clean'
],
]
};
@
ViewChild
(
'closeModal'
)
public
childModal
?:
ElementRef
;
@
ViewChild
(
'modalDetail'
)
modalDetail
!
:
TemplateRef
<
any
>
;
currentTab
=
1
allSelected
=
false
;
someSelected
=
false
;
itemsList
:
CountryModel
[]
=
[]
filterList
:
CountryModel
[]
=
[]
country
:
CountryModel
=
new
CountryModel
()
selectedItems
=
new
Map
<
string
,
boolean
>
();
pageIndex
=
0
;
modalStatus
:
"add"
|
"edit"
=
"add"
isSaving
=
false
;
get
searchTerm
():
string
{
return
this
.
_searchTerm
;
}
set
searchTerm
(
val
:
string
)
{
this
.
pageIndex
=
0
;
this
.
allSelected
=
false
this
.
_searchTerm
=
val
;
if
(
val
!=
''
)
{
this
.
filterList
=
this
.
filter
(
val
);
}
else
{
this
.
updatePagedItems
()
}
}
_searchTerm
=
""
;
constructor
(
private
countryService
:
CountryService
,
public
translate
:
TranslateService
,
private
modal
:
MatDialog
)
{
}
ngOnInit
():
void
{
this
.
countryService
.
list
().
subscribe
(
res
=>
{
this
.
itemsList
=
res
.
map
(
item
=>
new
CountryModel
(
item
,
this
.
translate
));
this
.
filterList
=
[...
this
.
itemsList
];
});
}
filter
(
v
:
string
)
{
return
this
.
itemsList
?.
filter
(
(
x
)
=>
x
.
countryId
?.
toLowerCase
().
indexOf
(
v
.
toLowerCase
())
!==
-
1
||
x
.
thName
?.
toLowerCase
().
indexOf
(
v
.
toLowerCase
())
!==
-
1
||
x
.
engName
?.
toLowerCase
().
indexOf
(
v
.
toLowerCase
())
!==
-
1
);
}
new
()
{
this
.
modalStatus
=
'add'
this
.
country
=
new
CountryModel
();
}
view
(
item
:
CountryModel
)
{
this
.
modalStatus
=
'edit'
;
this
.
country
=
new
CountryModel
(
item
,
this
.
translate
);
}
save
()
{
swal
({
title
:
"Are you sure?"
,
text
:
"คุณต้องการบันทึกหรือไม่"
,
icon
:
"warning"
,
dangerMode
:
false
,
buttons
:
[
"Cancel"
,
"Confirm"
],
})
.
then
((
willDelete
:
any
)
=>
{
if
(
willDelete
)
{
if
(
this
.
modalStatus
==
'add'
)
{
console
.
log
(
this
.
country
);
this
.
countryService
.
post
(
this
.
country
).
subscribe
(
result
=>
{
swal
(
"Save Success!!"
,
"บันทึกเวอร์ชั่นสำเร็จ"
,
"success"
);
this
.
ngOnInit
()
this
.
childModal
?.
nativeElement
.
click
()
})
}
else
if
(
this
.
modalStatus
==
'edit'
)
{
const
respone
=
new
CountryModel
(
this
.
country
);
this
.
countryService
.
post
(
respone
).
subscribe
(
result
=>
{
console
.
log
(
result
)
swal
(
"Update Success!!"
,
"บันทึกเวอร์ชั่นสำเร็จ"
,
"success"
);
this
.
ngOnInit
()
this
.
childModal
?.
nativeElement
.
click
()
})
}
}
});
}
deleteCountry
(
item
:
CountryModel
)
{
const
versionText
=
`
${
this
.
translate
.
instant
(
'Country'
)}
:
${
item
.
thName
}
`
;
swal
({
title
:
"Are you sure?"
,
text
:
`Confirm to delete :\n
${
versionText
}
\!`
,
icon
:
"warning"
,
dangerMode
:
true
,
buttons
:
[
"Cancel"
,
"Yes,Delete it!"
],
}).
then
((
willDelete
:
any
)
=>
{
if
(
willDelete
)
{
const
res
=
new
CountryModel
(
item
)
console
.
log
(
res
);
this
.
countryService
.
delete
(
res
).
subscribe
(
result
=>
{
swal
(
"Delete Success!!"
,
"ลบข้อมูลสำเร็จ"
,
"success"
);
this
.
ngOnInit
();
});
}
});
}
deleteSelect
()
{
let
countryConfig
=
''
;
this
.
selectedItems
.
forEach
((
isSelected
,
res
)
=>
{
if
(
isSelected
)
{
const
country
=
this
.
itemsList
.
find
(
country
=>
country
.
countryId
===
res
)
as
CountryModel
;
if
(
country
)
{
countryConfig
+=
`
${
this
.
translate
.
instant
(
'Country'
)}
:
${
country
.
thName
}
\n`
;
}
}
});
swal
({
title
:
"Are you sure?"
,
text
:
countryConfig
,
icon
:
"warning"
,
dangerMode
:
true
,
buttons
:
[
"Cancel"
,
"Yes, Delete it!"
],
})
.
then
((
willDelete
:
any
)
=>
{
if
(
willDelete
)
{
this
.
selectedItems
.
forEach
((
isSelected
,
res
)
=>
{
if
(
isSelected
)
{
const
country
=
this
.
itemsList
.
find
(
country
=>
country
.
countryId
===
res
);
if
(
country
)
{
const
newCountry
=
new
CountryModel
(
country
)
console
.
log
(
newCountry
);
this
.
countryService
.
delete
(
newCountry
).
subscribe
(
result
=>
{
swal
(
"Delete Success!!"
,
"ลบข้อมูลที่เลือกสำเร็จ"
,
"success"
);
this
.
ngOnInit
();
});
}
}
});
}
});
}
updatePagedItems
()
{
const
startIndex
=
this
.
pageIndex
*
10
;
const
endIndex
=
startIndex
+
10
;
this
.
filterList
=
this
.
itemsList
.
slice
(
startIndex
,
endIndex
);
}
toggleAll
(
event
:
any
)
{
this
.
allSelected
=
event
.
target
.
checked
;
this
.
selectedItems
.
clear
();
this
.
itemsList
.
forEach
(
item
=>
{
this
.
selectedItems
.
set
(
item
.
countryId
,
this
.
allSelected
);
});
this
.
someSelected
=
this
.
itemsList
.
some
(
item
=>
this
.
selectedItems
.
get
(
item
.
countryId
));
}
onCheckboxChange
(
countryId
:
string
)
{
const
isSelected
=
this
.
selectedItems
.
get
(
countryId
)
||
false
;
this
.
selectedItems
.
set
(
countryId
,
!
isSelected
);
this
.
allSelected
=
this
.
itemsList
.
every
(
item
=>
this
.
selectedItems
.
get
(
item
.
countryId
));
this
.
someSelected
=
this
.
itemsList
.
some
(
item
=>
this
.
selectedItems
.
get
(
item
.
countryId
));
}
filterEmp
(
empId
:
string
)
{
this
.
country
=
this
.
itemsList
.
filter
(
e
=>
e
.
countryId
==
empId
)[
0
]
}
}
\ No newline at end of file
src/app/DPU/services/category-company.service.ts
0 → 100644
View file @
a5f0f15f
import
{
HttpClient
,
HttpHeaders
}
from
"@angular/common/http"
;
import
{
Injectable
}
from
"@angular/core"
;
import
{
environment
}
from
"../../../environments/environment"
;
import
{
Observable
}
from
"rxjs"
;
import
{
CategoryModel
}
from
"../models/category.model"
;
@
Injectable
({
providedIn
:
'root'
})
export
class
CategoryCompanyService
{
constructor
(
private
http
:
HttpClient
)
{
}
list
():
Observable
<
CategoryModel
[]
>
{
return
this
.
http
.
get
<
CategoryModel
[]
>
(
`
${
environment
.
baseUrl
}
/company-category/list`
);
}
post
(
body
:
any
):
Observable
<
any
>
{
return
this
.
http
.
post
(
`
${
environment
.
baseUrl
}
/company-category`
,
body
,
{
observe
:
'response'
});
}
delete
(
body
:
any
):
Observable
<
any
>
{
const
option
=
{
headers
:
new
HttpHeaders
({
'Content-Type'
:
'application/json'
}),
body
:
body
};
return
this
.
http
.
delete
<
any
>
(
`
${
environment
.
baseUrl
}
/company-category`
,
option
);
}
}
src/app/DPU/services/country.service.ts
0 → 100644
View file @
a5f0f15f
import
{
HttpClient
,
HttpHeaders
}
from
"@angular/common/http"
;
import
{
Injectable
}
from
"@angular/core"
;
import
{
environment
}
from
"../../../environments/environment"
;
import
{
Observable
}
from
"rxjs"
;
import
{
CountryModel
}
from
"../models/country.model"
;
@
Injectable
({
providedIn
:
'root'
})
export
class
CountryService
{
constructor
(
private
http
:
HttpClient
)
{
}
list
():
Observable
<
CountryModel
[]
>
{
return
this
.
http
.
get
<
CountryModel
[]
>
(
`
${
environment
.
baseUrl
}
/country/list`
);
}
post
(
body
:
any
):
Observable
<
any
>
{
return
this
.
http
.
post
(
`
${
environment
.
baseUrl
}
/country`
,
body
,
{
observe
:
'response'
});
}
delete
(
body
:
any
):
Observable
<
any
>
{
const
option
=
{
headers
:
new
HttpHeaders
({
'Content-Type'
:
'application/json'
}),
body
:
body
};
return
this
.
http
.
delete
<
any
>
(
`
${
environment
.
baseUrl
}
/country`
,
option
);
}
}
src/app/shared/services/nav.service.ts
View file @
a5f0f15f
...
...
@@ -129,6 +129,8 @@ export class NavService implements OnDestroy {
type
:
'sub'
,
children
:
[
{
path
:
'/company-departments/company-info'
,
title
:
'ข้อมูลบริษัท'
,
type
:
'link'
},
{
path
:
'/admin/country-registration'
,
title
:
'ทะเบียนประเทศ'
,
type
:
'link'
},
{
path
:
'/admin/category-company'
,
title
:
'ทะเบียนประเภทบริษัท'
,
type
:
'link'
},
],
},
...
...
src/assets/i18n/en.json
View file @
a5f0f15f
...
...
@@ -90,5 +90,9 @@
"Surname(Eng)"
:
"Surname(Eng)"
,
"Name-Surname(Thai)"
:
"Name-Surname(Thai)"
,
"Name-Surname(Eng)"
:
"Name-Surname(Eng)"
,
"Add Version"
:
"Add Version"
"Add Version"
:
"Add Version"
,
"Category ID"
:
"Category ID"
,
"Category"
:
"Category"
,
"Country ID"
:
"Country ID"
,
"Country"
:
"Country"
}
src/assets/i18n/th.json
View file @
a5f0f15f
...
...
@@ -90,5 +90,9 @@
"Surname(Eng)"
:
"นามสกุล(อังกฤษ)"
,
"Name-Surname(Thai)"
:
"ชื่อ-นามสกุล(ไทย)"
,
"Name-Surname(Eng)"
:
"ชื่อ-นามสกุล(อังกฤษ)"
,
"Add Version"
:
"สร้างเวอร์ชั่น"
"Add Version"
:
"สร้างเวอร์ชั่น"
,
"Category ID"
:
"รหัสประเภทบริษัท"
,
"Category"
:
"ประเภท"
,
"Country ID"
:
"รหัสประเทศ"
,
"Country"
:
"ประเทศ"
}
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