@@ -395,8 +395,8 @@
, title : params.title
, content : resp
, size : $P.control.infoSize
- , init : () => { }
- , onClose : () => { $P.refreshList(); } // 자료 재조회
+ , init : () => { }
+ , onClose : () => { $P.refreshList(); } // 자료 재조회
});
}
});
@@ -413,7 +413,7 @@
, onOK : () => { }
});
- if (resp.saved) { $P.refreshList(); } // 자료 재조회
+ if (resp.saved) { $P.refreshList(); } // 자료 재조회
}
// 삭제
@@ -537,9 +537,15 @@
// 삭제 사유 callback
$P.callbackRsn = (obj) => {
+ // 선택 자료
+ let selected = $P.control.dataset.getKeys("selected");
+
+ if (selected.length < 1) return;
+
// 서버에 전송할 data(파라미터) 생성
let params = {};
- params[$P.control.prefixed("IDs")] = selected.join(","); // IDs
+
+ params[$P.control.prefixed("Ids")] = selected.join(","); // Ids
params.delRsn = obj.reason; // 삭제 사유
$P.control.remove(params);
@@ -632,29 +638,32 @@
// 선택 자료
let selected = $P.control.dataset.getKeys("selected");
- if (selected.length < 1) return;
+ if (selected.length < 1) {
+ dialog.alert({
+ content : "선택하신 부과제외 정보가 없습니다."
+ , onOK : () => { }
+ });
+ return;
+ }
// 삭제 메세지 확인
dialog.alert({
content : "선택하신 " + selected.length + "건의 " + $P.control.prefixName + " 정보를 삭제하시겠습니까?"
, onOK : async() => {
// 삭제 사유 입력
- var resp = await fetch(wctx.url("/resources/html/inputRsnDialog.html"));
- var template = await resp.text();
+ let resp = await fetch(wctx.url("/resources/html/inputRsnDialog.html"));
+ let template = await resp.text();
dialog.open({
- id : "inputDelRsnDialog",
- title: title,
- size : "lg",
- content: template,
- init : () => {
- setDialogZindex();
- },
- onOK : () => {
+ id : "inputDelRsnDialog"
+ , title: title
+ , size : "lg"
+ , content: template
+ , init : () => { setDialogZindex(); }
+ , onOK : () => {
$P.callbackRsn({ reason : $("#reason").val() });
}
});
-
}
});
}
@@ -771,9 +780,9 @@
// 업무구분에 따른 URL 설정
$P.setURL = (taskSeCd) => {
- $P.control.urls.load = wctx.url("/" + taskSeCd + $P.PrefixUrl + "/010/list.do"); // 조회
- $P.control.urls.remove = wctx.url("/" + taskSeCd + $P.PrefixUrl + "/010/remove.do"); // 삭제
+ $P.control.urls.load = wctx.url("/" + taskSeCd + $P.PrefixUrl + "/010/list.do"); // 조회
$P.control.urls.getInfo = wctx.url("/" + taskSeCd + $P.PrefixUrl + "/020/info.do"); // 수정
+ $P.control.urls.remove = wctx.url("/" + taskSeCd + $P.PrefixUrl + "/010/remove.do"); // 삭제
}
/**************************************************************************
diff --git a/src/main/webapp/WEB-INF/jsp/fims/excl/excl01020-info.jsp b/src/main/webapp/WEB-INF/jsp/fims/excl/excl01020-info.jsp
index 898e4835..04c8e021 100644
--- a/src/main/webapp/WEB-INF/jsp/fims/excl/excl01020-info.jsp
+++ b/src/main/webapp/WEB-INF/jsp/fims/excl/excl01020-info.jsp
@@ -1,12 +1,12 @@
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%>
<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%>
+
부과제외 정보
+
-
부과제외 정보
-
diff --git a/src/main/webapp/WEB-INF/jsp/fims/excl/excl02010-main.jsp b/src/main/webapp/WEB-INF/jsp/fims/excl/excl02010-main.jsp
index a4acc533..759e3f4d 100644
--- a/src/main/webapp/WEB-INF/jsp/fims/excl/excl02010-main.jsp
+++ b/src/main/webapp/WEB-INF/jsp/fims/excl/excl02010-main.jsp
@@ -1,12 +1,12 @@
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%>
<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%>
+
의견제출 관리
+
-
의견제출 관리
-
diff --git a/src/main/webapp/WEB-INF/jsp/fims/excl/excl02020-info.jsp b/src/main/webapp/WEB-INF/jsp/fims/excl/excl02020-info.jsp
index d35a4d5a..f6da1184 100644
--- a/src/main/webapp/WEB-INF/jsp/fims/excl/excl02020-info.jsp
+++ b/src/main/webapp/WEB-INF/jsp/fims/excl/excl02020-info.jsp
@@ -1,12 +1,12 @@
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%>
<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%>
+
의견제출 정보
+
-
의견제출 정보
-
@@ -305,10 +305,10 @@
// 주소 검색
$P.fnSearchAddr = async(title) => {
-
+
var resp = await fetch(wctx.url("/resources/html/searchAddr.html"));
var template = await resp.text();
-
+
dialog.open({
id : "searchAddrDialog",
title: title,
@@ -319,7 +319,7 @@
setDialogZindex();
}
});
-
+
}
// 첨부파일 조회
diff --git a/src/main/webapp/WEB-INF/jsp/fims/excl/excl02030-info.jsp b/src/main/webapp/WEB-INF/jsp/fims/excl/excl02030-info.jsp
index 551b3a74..74db79db 100644
--- a/src/main/webapp/WEB-INF/jsp/fims/excl/excl02030-info.jsp
+++ b/src/main/webapp/WEB-INF/jsp/fims/excl/excl02030-info.jsp
@@ -1,12 +1,12 @@
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%>
<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%>
+
의견제출 심의 정보
+
-
의견제출 심의 정보
-
diff --git a/src/main/webapp/WEB-INF/jsp/fims/excl/excl03010-main.jsp b/src/main/webapp/WEB-INF/jsp/fims/excl/excl03010-main.jsp
index 579c560c..2fc08f08 100644
--- a/src/main/webapp/WEB-INF/jsp/fims/excl/excl03010-main.jsp
+++ b/src/main/webapp/WEB-INF/jsp/fims/excl/excl03010-main.jsp
@@ -1,12 +1,12 @@
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%>
<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%>
+
단속 재등록
+
-
단속 재등록
-
diff --git a/src/main/webapp/WEB-INF/jsp/fims/sndb/sndb01080-info.jsp b/src/main/webapp/WEB-INF/jsp/fims/sndb/sndb01080-info.jsp
index 3183d91d..74a52025 100644
--- a/src/main/webapp/WEB-INF/jsp/fims/sndb/sndb01080-info.jsp
+++ b/src/main/webapp/WEB-INF/jsp/fims/sndb/sndb01080-info.jsp
@@ -29,10 +29,10 @@
-