fix Warning: Don't save data.

This commit is contained in:
Net 2024-09-26 14:54:47 +07:00
parent a862406de0
commit b6fbee826a
2 changed files with 3 additions and 5 deletions

View file

@ -515,8 +515,8 @@ async function deleteEmployeeById(opts: {
}
}
const resultList = await employeeStore.fetchList();
if (resultList) listEmployee.value = resultList.result;
await fetchListEmployee(true);
flowStore.rotate();
},
cancel: () => {},

View file

@ -537,7 +537,6 @@ export const useCustomerBranchForm = defineStore('form-customer-branch', () => {
);
async function submitForm() {
console.log(currentFormData.value);
if (!state.value.currentCustomerId) {
throw new Error(
'Employer id cannot be found. Did you properly set employer id?',
@ -913,7 +912,7 @@ export const useEmployeeForm = defineStore('form-employee', () => {
await assignFormDataEmployee(currentFromDataEmployee.value.id);
}
async function submitPersonal(imgList?: {
async function submitPersonal(imgList: {
selectedImage: string;
list: { url: string; imgFile: File | null; name: string }[];
}) {
@ -933,7 +932,6 @@ export const useEmployeeForm = defineStore('form-employee', () => {
if (res) {
await assignFormDataEmployee(res.id);
currentFromDataEmployee.value.id = res.id;
currentFromDataEmployee.value.file = res.file;
state.value.statusSavePersonal = true;
}
}