fecthStat
This commit is contained in:
parent
155a3b206d
commit
2824723e76
1 changed files with 9 additions and 6 deletions
|
|
@ -190,8 +190,9 @@ const sendToDirector = async () => {
|
|||
.catch((err) => {
|
||||
messageError($q, err);
|
||||
})
|
||||
.finally(() => {
|
||||
hideLoader();
|
||||
.finally(async () => {
|
||||
await hideLoader();
|
||||
await fecthStat(round.value);
|
||||
});
|
||||
});
|
||||
};
|
||||
|
|
@ -257,8 +258,9 @@ const directorApproved = async () => {
|
|||
.catch((err) => {
|
||||
messageError($q, err);
|
||||
})
|
||||
.finally(() => {
|
||||
hideLoader();
|
||||
.finally(async () => {
|
||||
await hideLoader();
|
||||
await fecthStat(round.value);
|
||||
});
|
||||
},
|
||||
"ยืนยันการอนุมัติ",
|
||||
|
|
@ -288,8 +290,9 @@ const requestSendNote = async () => {
|
|||
.catch((err) => {
|
||||
messageError($q, err);
|
||||
})
|
||||
.finally(() => {
|
||||
hideLoader();
|
||||
.finally(async () => {
|
||||
await hideLoader();
|
||||
await fecthStat(round.value);
|
||||
});
|
||||
});
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue