refactor: add data uploadFileListCustomer
This commit is contained in:
parent
7a700b050a
commit
feea208480
1 changed files with 96 additions and 11 deletions
|
|
@ -1,16 +1,101 @@
|
||||||
import { QTableProps } from 'quasar';
|
import { QTableProps } from 'quasar';
|
||||||
|
|
||||||
export const uploadFileList: string[] = [
|
export const uploadFileListCustomer: {
|
||||||
'ข้อมูลหนังสือการเดินทาง',
|
label: string;
|
||||||
'ข้อมูลการตรวจลงตรา',
|
value: string;
|
||||||
'ตม.6',
|
}[] = [
|
||||||
'ใบอนุญาตทำงาน',
|
{
|
||||||
'แบบแจ้งการจ้างคนต่างด้าวทำงาน',
|
label: 'customer.typeFile.citizenId',
|
||||||
'แบบแจ้งเข้าทำงานของคนต่างด้าว',
|
value: 'citizenId',
|
||||||
'ใบคัดประวัติระบบจัดหางาน',
|
},
|
||||||
'ใบตอบรับการแจ้งเกี่ยวกับการทำงานของคนต่างด้าว',
|
{
|
||||||
'ใบเสร็จรับเงิน',
|
label: 'customer.typeFile.registrationBook',
|
||||||
'อื่นๆ',
|
value: 'registrationBook',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'customer.typeFile.houseMap',
|
||||||
|
value: 'houseMap',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'customer.typeFile.businessRegistration',
|
||||||
|
value: 'businessRegistration',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'customer.typeFile.dbdCertificate',
|
||||||
|
value: 'dbdCertificate',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'customer.typeFile.vatRegistrationCertificate',
|
||||||
|
value: 'vatRegistrationCertificate',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'customer.typeFile.powerOfAttorney',
|
||||||
|
value: 'powerOfAttorney',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'customer.typeFile.others',
|
||||||
|
value: 'others',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export const uploadFileListEmployee: {
|
||||||
|
label: string;
|
||||||
|
value: string;
|
||||||
|
}[] = [
|
||||||
|
{
|
||||||
|
label: 'ข้อมูลหนังสือการเดินทาง',
|
||||||
|
value: 'travelBook',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'ข้อมูลการตรวจลงตรา',
|
||||||
|
value: 'checkList',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'ตม.6',
|
||||||
|
value: 'tm6',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'ใบอนุญาตทำงาน',
|
||||||
|
value: 'license',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'แบบแจ้งการจ้างคนต่างด้าวทำงาน',
|
||||||
|
value: 'noticeJob',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'แบบแจ้งเข้าทำงานของคนต่างด้าว',
|
||||||
|
value: 'noticeJobOther',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'ใบคัดประวัติระบบจัดหางาน',
|
||||||
|
value: 'historyJob',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'ใบตอบรับการแจ้งเกี่ยวกับการทำงานของคนต่างด้าว',
|
||||||
|
value: 'acceptJob',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'ใบเสร็จรับเงิน',
|
||||||
|
value: 'receipt',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: 'อื่นๆ',
|
||||||
|
value: 'other',
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export const formMenuIconEmployee = [
|
export const formMenuIconEmployee = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue