fecthStat

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-09-14 11:00:41 +07:00
parent 155a3b206d
commit 2824723e76

View file

@ -190,8 +190,9 @@ const sendToDirector = async () => {
.catch((err) => { .catch((err) => {
messageError($q, err); messageError($q, err);
}) })
.finally(() => { .finally(async () => {
hideLoader(); await hideLoader();
await fecthStat(round.value);
}); });
}); });
}; };
@ -257,8 +258,9 @@ const directorApproved = async () => {
.catch((err) => { .catch((err) => {
messageError($q, err); messageError($q, err);
}) })
.finally(() => { .finally(async () => {
hideLoader(); await hideLoader();
await fecthStat(round.value);
}); });
}, },
"ยืนยันการอนุมัติ", "ยืนยันการอนุมัติ",
@ -288,8 +290,9 @@ const requestSendNote = async () => {
.catch((err) => { .catch((err) => {
messageError($q, err); messageError($q, err);
}) })
.finally(() => { .finally(async () => {
hideLoader(); await hideLoader();
await fecthStat(round.value);
}); });
}); });
}; };