From 4336bd1b5d6a81c90be5014b8f78b35037ce6755 Mon Sep 17 00:00:00 2001 From: Kasi Date: Wed, 28 May 2025 09:10:26 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20=EA=B2=B0=EC=9E=AC=ED=95=A8=20?= =?UTF-8?q?=EC=98=A4=EA=B8=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/app/paymentManagement.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/app/paymentManagement.vue b/src/pages/app/paymentManagement.vue index 84cd918..a83069d 100644 --- a/src/pages/app/paymentManagement.vue +++ b/src/pages/app/paymentManagement.vue @@ -67,7 +67,7 @@ async function updateIntegratedPaymentApprovalFunc() { apprNo: params.rowData.apprNo, apprOrd: params.rowData.apprOrd, sabun: params.rowData.sabun, - apprStatCd: '0400', // 결재 상태변경 (결재승인 0200 결재회수 0300 결재반려 0400) + apprStatCd: '0200', // 결재 상태변경 (결재승인 0200 결재회수 0300 결재반려 0400) reason: '', } const result = await updateIntegratedStatus(paymentUpdateParams) @@ -84,7 +84,7 @@ async function updateIntegratedPaymentRejectionFunc() { reason: '', } const result = await updateIntegratedStatus(paymentUpdateParams) - notyf.primary("결재승인완료") + notyf.primary("결재반려완료") window.location.reload() }