부과제외 등록시 오류 메시지 수정.

main
jjh 12 months ago
parent 8a59422dfc
commit 66696da590

@ -103,7 +103,7 @@ public class Excl01Controller extends ApplicationController {
return mav
.addObject("message", "이미 등록된 부과제외 정보가 있습니다.")
.addObject("rtnMsg", "이미 등록된 부과제외 정보가 있습니다.")
.addObject("rtnMsg", "[F] 이미 등록된 부과제외 정보가 있습니다.")
;
} else {
boolean json = jsonResponse();

@ -388,7 +388,7 @@
, success : resp => {
if ((typeof resp) != "string") {
if (resp.rtnMsg != "") {
dialog.alert(resp.rtnMsg);
dialog.alert(resp.rtnMsg.replace(/\[F\]/g, ""));
return;
}
}

Loading…
Cancel
Save