Compare commits

..

No commits in common. "4fa804aaca46a2eea46f04274ce4cfc144676ff1" and "f58dfbc97f25034792d92eb7288906fff11751c3" have entirely different histories.

View file

@ -581,11 +581,23 @@ async function checkSaveCandidate() {
.then((res) => {
const jobId = res.data.result.jobId;
uploadProgress.addUpload(jobId, selected_row_id.value, "candidate");
showUploadSuccessDialog();
dialogMessage(
$q,
"อัปโหลดไฟล์สำเร็จ",
"ระบบกำลังนำเข้าข้อมูลคุณสามารถใช้งานเมนูอื่นในระหว่างนี้ได้ โดยระบบจะแจ้งผลการดำเนินการให้ทราบทันทีผ่านหน้าจอเมื่อเสร็จสิ้น",
"check",
"ตกลง",
"primary",
undefined,
undefined,
true
);
modalCandidate.value = false;
files_candidate.value = null;
selected_row_id.value = "";
// fetchData();
})
.catch((e) => {
messageError($q, e);
@ -605,10 +617,22 @@ async function checkSaveScore() {
.then((res) => {
const jobId = res.data.result.jobId;
uploadProgress.addUpload(jobId, selected_row_id.value, "score");
showUploadSuccessDialog();
dialogMessage(
$q,
"อัปโหลดไฟล์สำเร็จ",
"ระบบกำลังนำเข้าข้อมูลคุณสามารถใช้งานเมนูอื่นในระหว่างนี้ได้ โดยระบบจะแจ้งผลการดำเนินการให้ทราบทันทีผ่านหน้าจอเมื่อเสร็จสิ้น",
"check",
"ตกลง",
"primary",
undefined,
undefined,
true
);
modalScore.value = false;
files_score.value = null;
selected_row_id.value = "";
// fetchData();
})
.catch((e) => {
messageError($q, e);
@ -628,10 +652,23 @@ async function checkSaveResult() {
.then((res) => {
const jobId = res.data.result.jobId;
uploadProgress.addUpload(jobId, selected_row_id.value, "result");
showUploadSuccessDialog();
// success($q, " ()");
dialogMessage(
$q,
"อัปโหลดไฟล์สำเร็จ",
"ระบบกำลังนำเข้าข้อมูลคุณสามารถใช้งานเมนูอื่นในระหว่างนี้ได้ โดยระบบจะแจ้งผลการดำเนินการให้ทราบทันทีผ่านหน้าจอเมื่อเสร็จสิ้น",
"check",
"ตกลง",
"primary",
undefined,
undefined,
true
);
modalResult.value = false;
files_result.value = null;
selected_row_id.value = "";
fetchData();
})
.catch((e) => {
messageError($q, e);