|
|
@ -301,26 +301,27 @@
|
|
|
|
// 민원상담 ID 가 없다면.. return
|
|
|
|
// 민원상담 ID 가 없다면.. return
|
|
|
|
if (typeof cvlcptDscsnId == "undefined" || cvlcptDscsnId == null || cvlcptDscsnId == "") return;
|
|
|
|
if (typeof cvlcptDscsnId == "undefined" || cvlcptDscsnId == null || cvlcptDscsnId == "") return;
|
|
|
|
|
|
|
|
|
|
|
|
// 삭제 메세지 확인
|
|
|
|
// 삭제 메세지 확인
|
|
|
|
dialog.alert({
|
|
|
|
dialog.alert({
|
|
|
|
content: "선택한 " + $P.control.prefixName + " 정보를 삭제하시겠습니까?"
|
|
|
|
content: "선택하신 " + selected.length + "건의 " + $P.control.prefixName + " 정보를 삭제하시겠습니까?"
|
|
|
|
, onOK : () => {
|
|
|
|
, onOK: () => {
|
|
|
|
// 삭제 사유 입력
|
|
|
|
// 삭제 사유 입력
|
|
|
|
fetch(wctx.url("/resources/html/inputRsnDialog.html"))
|
|
|
|
fetch(wctx.url("/resources/html/inputRsnDialog.html"))
|
|
|
|
.then(function(resp) { return resp.text(); })
|
|
|
|
.then(function(resp) { return resp.text(); })
|
|
|
|
.then(function(template) {
|
|
|
|
.then(function(template) {
|
|
|
|
dialog.open({
|
|
|
|
dialog.open({
|
|
|
|
id: "inputDelRsnDialog"
|
|
|
|
id: "inputDelRsnDialog"
|
|
|
|
, title: title
|
|
|
|
, title: title
|
|
|
|
, size: "lg"
|
|
|
|
, size: "lg"
|
|
|
|
, content: template
|
|
|
|
, content: template
|
|
|
|
, onOK: () => {
|
|
|
|
, init: () => { setDialogZindex(); }
|
|
|
|
$P.callbackRsn({ reason: $("#reason").val() });
|
|
|
|
, onOK: () => {
|
|
|
|
}
|
|
|
|
$P.callbackRsn({ reason: $("#reason").val() });
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
/**************************************************************************
|
|
|
|