feat: employee image and type

This commit is contained in:
puriphatt 2024-06-11 05:01:58 +00:00
parent 93697fd8cc
commit 26402c0de4
5 changed files with 53 additions and 46 deletions

View file

@ -21,8 +21,8 @@ const addrOptions = reactive<{
const passportType = defineModel<string>('passportType'); const passportType = defineModel<string>('passportType');
const passportNumber = defineModel<string>('passportNumber'); const passportNumber = defineModel<string>('passportNumber');
const passportIssueDate = defineModel<Date>('passportIssueDate'); const passportIssueDate = defineModel<Date | null>('passportIssueDate');
const passportExpiryDate = defineModel<Date>('passportExpiryDate'); const passportExpiryDate = defineModel<Date | null>('passportExpiryDate');
const passportIssuingCountry = defineModel<string>('passportIssuingCountry'); const passportIssuingCountry = defineModel<string>('passportIssuingCountry');
const passportIssuingPlace = defineModel<string>('passportIssuingPlace'); const passportIssuingPlace = defineModel<string>('passportIssuingPlace');
const previousPassportReference = defineModel<string>( const previousPassportReference = defineModel<string>(

View file

@ -21,12 +21,12 @@ const addrOptions = reactive<{
const visaType = defineModel<string>('visaType'); const visaType = defineModel<string>('visaType');
const visaNumber = defineModel<string>('visaNumber'); const visaNumber = defineModel<string>('visaNumber');
const visaIssueDate = defineModel<Date>('visaIssueDate'); const visaIssueDate = defineModel<Date | null>('visaIssueDate');
const visaExpiryDate = defineModel<Date>('visaExpiryDate'); const visaExpiryDate = defineModel<Date | null>('visaExpiryDate');
const visaIssuingPlace = defineModel<string>('visaIssuingPlace'); const visaIssuingPlace = defineModel<string>('visaIssuingPlace');
const visaStayUntilDate = defineModel<Date>('visaStayUntilDate'); const visaStayUntilDate = defineModel<Date | null>('visaStayUntilDate');
const tm6Number = defineModel<string>('tm6Number'); const tm6Number = defineModel<string>('tm6Number');
const entryDate = defineModel<Date>('entryDate'); const entryDate = defineModel<Date | null>('entryDate');
defineProps<{ defineProps<{
title?: string; title?: string;

View file

@ -108,10 +108,10 @@ const fieldSelectedCustomer = ref<{ label: string; value: string }>({
const formDataEmployeeSameAddr = ref(false); const formDataEmployeeSameAddr = ref(false);
const formDataEmployeeTab = ref('personalInfo'); const formDataEmployeeTab = ref('personalInfo');
const formDataEmployee = ref<EmployeeCreate>({ const formDataEmployee = ref<EmployeeCreate>({
image: new File([''], 'dummy.jpg'), image: null,
customerBranchId: '0b16ee4a-2ff3-40b8-b09d-c7589422d03d', customerBranchId: '',
nrcNo: '', nrcNo: '',
dateOfBirth: new Date(), dateOfBirth: null,
gender: '', gender: '',
nationality: '', nationality: '',
@ -126,20 +126,20 @@ const formDataEmployee = ref<EmployeeCreate>({
passportType: '', passportType: '',
passportNumber: '', passportNumber: '',
passportIssueDate: new Date(), passportIssueDate: null,
passportExpiryDate: new Date(), passportExpiryDate: null,
passportIssuingCountry: '', passportIssuingCountry: '',
passportIssuingPlace: '', passportIssuingPlace: '',
previousPassportReference: '', previousPassportReference: '',
visaType: '', visaType: '',
visaNumber: '', visaNumber: '',
visaIssueDate: new Date(), visaIssueDate: null,
visaExpiryDate: new Date(), visaExpiryDate: null,
visaIssuingPlace: '', visaIssuingPlace: '',
visaStayUntilDate: new Date(), visaStayUntilDate: null,
tm6Number: '', tm6Number: '',
entryDate: new Date(), entryDate: null,
workerStatus: '', workerStatus: '',
subDistrictId: '', subDistrictId: '',
@ -424,18 +424,24 @@ function deleteBranchId(id: string) {
} }
async function onSubmit() { async function onSubmit() {
await create({ if (selectorLabel.value === 'EMPLOYER') {
...formData.value, await create({
customerType: customerType.value === 'CORP' ? 'CORP' : 'PERS', ...formData.value,
image: profileSubmit.value ? profileFile.value ?? null : null, customerType: customerType.value === 'CORP' ? 'CORP' : 'PERS',
}); image: profileSubmit.value ? profileFile.value ?? null : null,
clearForm(); });
const resultList = await fetchList({ includeBranch: true }); clearForm();
const resultList = await fetchList({ includeBranch: true });
if (resultList) listCustomer.value = resultList.result; if (resultList) listCustomer.value = resultList.result;
}
if (selectorLabel.value === 'EMPLOYEE') { if (selectorLabel.value === 'EMPLOYEE') {
await employeeStore.create(formDataEmployee.value); console.log(profileFile.value);
await employeeStore.create({
...formDataEmployee.value,
image: profileSubmit.value ? profileFile.value ?? null : null,
});
const resultList = await employeeStore.fetchList(); const resultList = await employeeStore.fetchList();
if (resultList) listEmployee.value = resultList.result; if (resultList) listEmployee.value = resultList.result;
} }
@ -891,6 +897,7 @@ watch(fieldSelectedCustomer, async () => {
<PersonCard <PersonCard
:list=" :list="
listEmployee.map((v: Employee) => ({ listEmployee.map((v: Employee) => ({
img: v.profileImageUrl,
id: v.id, id: v.id,
name: name:
$i18n.locale === 'en-US' $i18n.locale === 'en-US'
@ -1157,9 +1164,9 @@ watch(fieldSelectedCustomer, async () => {
employee employee
addressSeparator addressSeparator
:noAddress="formDataEmployeeTab !== 'personalInfo'" :noAddress="formDataEmployeeTab !== 'personalInfo'"
v-model:modal="dialogEmployee"
v-model:tabs-list="employeeTab" v-model:tabs-list="employeeTab"
v-model:employee-tab="formDataEmployeeTab" v-model:employee-tab="formDataEmployeeTab"
v-model:modal="dialogEmployee"
v-model:same-with-employer="formDataEmployeeSameAddr" v-model:same-with-employer="formDataEmployeeSameAddr"
v-model:address="formDataEmployee.address" v-model:address="formDataEmployee.address"
v-model:addressEN="formDataEmployee.addressEN" v-model:addressEN="formDataEmployee.addressEN"

View file

@ -56,9 +56,8 @@ const useEmployeeStore = defineStore('api-employee', () => {
}, },
) { ) {
const { image, ...payload } = data; const { image, ...payload } = data;
const res = await api.post< const res = await api.post<
Employee & { imageUrl: string; imageUploadUrl: string } Employee & { profileImageUrl: string; profileImageUploadUrl: string }
>('/employee', payload, { >('/employee', payload, {
headers: { headers: {
'X-Session-Id': flow?.sessionId, 'X-Session-Id': flow?.sessionId,
@ -67,12 +66,13 @@ const useEmployeeStore = defineStore('api-employee', () => {
}, },
}); });
await axios image &&
.put(res.data.imageUploadUrl, image, { (await axios
headers: { 'Content-Type': image.type }, .put(res.data.profileImageUploadUrl, image, {
onUploadProgress: (e) => console.log(e), headers: { 'Content-Type': image?.type },
}) onUploadProgress: (e) => console.log(e),
.catch((e) => console.error(e)); })
.catch((e) => console.error(e)));
if (!res) return false; if (!res) return false;

View file

@ -46,14 +46,14 @@ export type Employee = {
}; };
export type EmployeeCreate = { export type EmployeeCreate = {
image: File; image: File | null;
customerBranchId: string; customerBranchId: string;
status?: Status; status?: Status;
nrcNo: string; nrcNo: string;
dateOfBirth: Date; dateOfBirth: Date | null;
gender: string; gender: string;
nationality: string; nationality: string;
@ -68,20 +68,20 @@ export type EmployeeCreate = {
passportType: string; passportType: string;
passportNumber: string; passportNumber: string;
passportIssueDate: Date; passportIssueDate: Date | null;
passportExpiryDate: Date; passportExpiryDate: Date | null;
passportIssuingCountry: string; passportIssuingCountry: string;
passportIssuingPlace: string; passportIssuingPlace: string;
previousPassportReference?: string; previousPassportReference?: string;
visaType: string; visaType: string;
visaNumber: string; visaNumber: string;
visaIssueDate: Date; visaIssueDate: Date | null;
visaExpiryDate: Date; visaExpiryDate: Date | null;
visaIssuingPlace: string; visaIssuingPlace: string;
visaStayUntilDate: Date; visaStayUntilDate: Date | null;
tm6Number: string; tm6Number: string;
entryDate: Date; entryDate: Date | null;
workerStatus: string; workerStatus: string;
subDistrictId?: string | null; subDistrictId?: string | null;
@ -145,8 +145,8 @@ export type EmployeeCheckup = {
}; };
export type EmployeeCheckupCreate = { export type EmployeeCheckupCreate = {
coverageExpireDate?: Date; coverageExpireDate?: Date | null;
coverageStartDate?: Date; coverageStartDate?: Date | null;
insuranceCompany?: string; insuranceCompany?: string;
medicalBenefitScheme?: string; medicalBenefitScheme?: string;
remark?: string; remark?: string;
@ -175,9 +175,9 @@ export type EmployeeWork = {
}; };
export type EmployeeWorkCreate = { export type EmployeeWorkCreate = {
workEndDate?: Date; workEndDate?: Date | null;
workPermitExpireDate?: Date; workPermitExpireDate?: Date | null;
workPermitIssuDate?: Date; workPermitIssuDate?: Date | null;
workPermitNo?: string; workPermitNo?: string;
workplace?: string; workplace?: string;
jobType?: string; jobType?: string;