|
|
@ -127,10 +127,10 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<span class="container-window-btn-right">
|
|
|
|
<span class="container-window-btn-right">
|
|
|
|
<!-- 업무 버튼 -->
|
|
|
|
<!-- 업무 버튼 -->
|
|
|
|
<button type="button" class="btn btn-primary w-px-120" id="btnUpdateRduct--${pageName}" title="감경 수정">
|
|
|
|
<button type="button" class="btn btn-primary w-px-120" id="btnUpdate--${pageName}" title="감경 수정">
|
|
|
|
감경 수정
|
|
|
|
감경 수정
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-primary w-px-120" id="btnRemoveRduct--${pageName}" title="감경 삭제">
|
|
|
|
<button type="button" class="btn btn-primary w-px-120" id="btnRemove--${pageName}" title="감경 삭제">
|
|
|
|
감경 삭제
|
|
|
|
감경 삭제
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
@ -251,10 +251,8 @@
|
|
|
|
* script 진입
|
|
|
|
* script 진입
|
|
|
|
**************************************************************************/
|
|
|
|
**************************************************************************/
|
|
|
|
$(document).ready(function() {
|
|
|
|
$(document).ready(function() {
|
|
|
|
var $P = pageObject["${pageName}"];
|
|
|
|
let $P = pageObject["${pageName}"];
|
|
|
|
|
|
|
|
|
|
|
|
// URL
|
|
|
|
|
|
|
|
$P.PrefixUrl = "/levy/levy02";
|
|
|
|
|
|
|
|
// FormFields
|
|
|
|
// FormFields
|
|
|
|
$P.formFields = new FimsFormFields("#frmSearch--${pageName}");
|
|
|
|
$P.formFields = new FimsFormFields("#frmSearch--${pageName}");
|
|
|
|
|
|
|
|
|
|
|
@ -262,25 +260,26 @@
|
|
|
|
* DatasetControl
|
|
|
|
* DatasetControl
|
|
|
|
**************************************************************************/
|
|
|
|
**************************************************************************/
|
|
|
|
$P.control = new DatasetControl({
|
|
|
|
$P.control = new DatasetControl({
|
|
|
|
prefix : "rduct"
|
|
|
|
prefix: "rduct"
|
|
|
|
, prefixName : "감경"
|
|
|
|
, prefixName: "감경"
|
|
|
|
, infoSize : "lg"
|
|
|
|
, keymapper: info => info ? info.RDUCT_ID : ""
|
|
|
|
, keymapper : info => info ? info.RDUCT_ID : ""
|
|
|
|
, dataGetter: obj => obj.${infoPrefix}List
|
|
|
|
, dataGetter : obj => obj.${infoPrefix}List
|
|
|
|
, appendData: true
|
|
|
|
, appendData : true
|
|
|
|
, infoSize: "lg"
|
|
|
|
, formats: {
|
|
|
|
, formats: {
|
|
|
|
RDUCT_YMD : dateFormat,
|
|
|
|
RDUCT_YMD: dateFormat
|
|
|
|
CRDN_YMD_TM : datetimeFormat,
|
|
|
|
, CRDN_YMD_TM: datetimeFormat
|
|
|
|
FFNLG_CRDN_AMT : numberFormat,
|
|
|
|
, FFNLG_CRDN_AMT: numberFormat
|
|
|
|
RDUCT_AMT : numberFormat,
|
|
|
|
, RDUCT_AMT: numberFormat
|
|
|
|
FFNLG_AMT : numberFormat,
|
|
|
|
, FFNLG_AMT: numberFormat
|
|
|
|
SUM_AMT : numberFormat
|
|
|
|
, SUM_AMT: numberFormat
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$P.control.defaultFetchSize = FETCH_XS;
|
|
|
|
// $P.control 설정
|
|
|
|
$P.control.untilPageNum = 0;
|
|
|
|
$P.control.defaultFetchSize = FETCH_XS; // 1 페이지당 조회되는 자료 건수 index.jsp에서 확인 FETCH_XS = 30
|
|
|
|
|
|
|
|
$P.control.untilPageNum = 0; // 현재 페이지 번호
|
|
|
|
$P.control.beforeCurrent = null;
|
|
|
|
$P.control.beforeCurrent = null;
|
|
|
|
$P.control.tableRenderComplete = false;
|
|
|
|
$P.control.tableRenderComplete = false; // dataTables 에 자료 추가 완료 여부
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
/**************************************************************************
|
|
|
|
* DatasetControl.on
|
|
|
|
* DatasetControl.on
|
|
|
@ -289,17 +288,18 @@
|
|
|
|
$P.renderList(obj.${infoPrefix}Total);
|
|
|
|
$P.renderList(obj.${infoPrefix}Total);
|
|
|
|
|
|
|
|
|
|
|
|
$("#paging--${pageName}").setPagingInfo({
|
|
|
|
$("#paging--${pageName}").setPagingInfo({
|
|
|
|
list : $P.control.dataset
|
|
|
|
list: $P.control.dataset
|
|
|
|
, prefix : "paging--${pageName}"
|
|
|
|
, prefix: "paging--${pageName}"
|
|
|
|
, start : obj.${infoPrefix}Start
|
|
|
|
, start: obj.${infoPrefix}Start
|
|
|
|
, totalSize : obj.${infoPrefix}Total
|
|
|
|
, totalSize: obj.${infoPrefix}Total
|
|
|
|
, fetchSize : obj.${infoPrefix}Fetch
|
|
|
|
, fetchSize: obj.${infoPrefix}Fetch
|
|
|
|
, func : "pageObject['${pageName}'].control.load({index})"
|
|
|
|
, func: "pageObject['${pageName}'].control.load({index})"
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$P.control.tableRenderComplete = true;
|
|
|
|
$P.control.tableRenderComplete = true; // dataTables 에 자료 추가 완료
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 현재 선택 자료 변경 이벤트
|
|
|
|
$P.control.onCurrentChange = (item) => {
|
|
|
|
$P.control.onCurrentChange = (item) => {
|
|
|
|
if (!item) return;
|
|
|
|
if (!item) return;
|
|
|
|
|
|
|
|
|
|
|
@ -315,12 +315,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
$("#tbody--${pageName} input[type='checkbox']").each(function() {
|
|
|
|
$("#tbody--${pageName} input[type='checkbox']").each(function() {
|
|
|
|
let checkbox = $(this);
|
|
|
|
let checkbox = $(this);
|
|
|
|
|
|
|
|
|
|
|
|
checkbox.prop("checked", keys.includes(checkbox.val()));
|
|
|
|
checkbox.prop("checked", keys.includes(checkbox.val()));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 삭제 버튼
|
|
|
|
// 삭제 버튼
|
|
|
|
$("#btnRemoveRduct--${pageName}").prop("disabled", keys.length < 1);
|
|
|
|
$("#btnRemove--${pageName}").prop("disabled", keys.length < 1);
|
|
|
|
|
|
|
|
|
|
|
|
// DataTables(그리드) 전체 선택(checkbox)
|
|
|
|
// DataTables(그리드) 전체 선택(checkbox)
|
|
|
|
if (keys.length < 1) {
|
|
|
|
if (keys.length < 1) {
|
|
|
@ -332,20 +331,21 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 과태료 감경 정보 dialog
|
|
|
|
// 상세정보 dialog
|
|
|
|
$P.control.getInfo = (params) => {
|
|
|
|
$P.control.getInfo = (params) => {
|
|
|
|
if (!params) return;
|
|
|
|
if (!params) return;
|
|
|
|
|
|
|
|
|
|
|
|
ajax.get({
|
|
|
|
ajax.get({
|
|
|
|
url : $P.control.urls.getInfo
|
|
|
|
url: wctx.url("/" + params.taskSeCd + "${infoPrefixUrl}" + "/020/info.do") + "?openerPageName=${pageName}"
|
|
|
|
, data : params || {}
|
|
|
|
, data: params || {}
|
|
|
|
, success : resp => {
|
|
|
|
, success: resp => {
|
|
|
|
dialog.open({
|
|
|
|
dialog.open({
|
|
|
|
id : $P.control.prefixed("Dialog")
|
|
|
|
id: $P.control.prefixed("Dialog--${pageName}")
|
|
|
|
, title : params.title
|
|
|
|
, title: params.title
|
|
|
|
, content : resp
|
|
|
|
, content: resp
|
|
|
|
, size : $P.control.infoSize
|
|
|
|
, size: $P.control.infoSize
|
|
|
|
, onClose : () => { $P.refreshList(); }
|
|
|
|
, init: () => { }
|
|
|
|
|
|
|
|
, onClose: () => { $P.fnRefreshList(); } // 자료 재조회
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
@ -353,7 +353,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
// 삭제 callback
|
|
|
|
// 삭제 callback
|
|
|
|
$P.control.onRemove = (resp) => {
|
|
|
|
$P.control.onRemove = (resp) => {
|
|
|
|
let btnTitle = $("#btnRemoveRduct--${pageName}").attr("title");
|
|
|
|
let btnTitle = $("#btnRemove--${pageName}").attr("title");
|
|
|
|
let showMessage = resp.rtnMsg.replace(/[S]|[F]/g, btnTitle);
|
|
|
|
let showMessage = resp.rtnMsg.replace(/[S]|[F]/g, btnTitle);
|
|
|
|
|
|
|
|
|
|
|
|
// 메시지 출력
|
|
|
|
// 메시지 출력
|
|
|
@ -362,9 +362,7 @@
|
|
|
|
, onOK : () => { }
|
|
|
|
, onOK : () => { }
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (resp.saved) {
|
|
|
|
if (resp.saved) { $P.fnRefreshList(); } // 자료 재조회
|
|
|
|
$P.refreshList();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 삭제
|
|
|
|
// 삭제
|
|
|
@ -372,9 +370,9 @@
|
|
|
|
if (!params) return;
|
|
|
|
if (!params) return;
|
|
|
|
|
|
|
|
|
|
|
|
ajax.post({
|
|
|
|
ajax.post({
|
|
|
|
url : $P.control.urls.remove
|
|
|
|
url: wctx.url("/" + params.taskSeCd + "${infoPrefixUrl}" + "/010/remove.do")
|
|
|
|
, data : params
|
|
|
|
, data: params
|
|
|
|
, success : resp => $P.control.onRemove(resp)
|
|
|
|
, success: resp => $P.control.onRemove(resp)
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -429,81 +427,66 @@
|
|
|
|
$P.control.load($P.control.query.pageNum + 1);
|
|
|
|
$P.control.load($P.control.query.pageNum + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
// DataTables에 더블 클릭시 개별총정보 dialog
|
|
|
|
* pageObject.function
|
|
|
|
$P.getTotalInfo = (crdnId) => {
|
|
|
|
**************************************************************************/
|
|
|
|
if (typeof crdnId == "undefined" || crdnId == null || crdnId == "") return;
|
|
|
|
// callback 사용자 검색
|
|
|
|
|
|
|
|
$P.callbackFindUser = (userId, userNm) => {
|
|
|
|
|
|
|
|
$("#schRgtrCd--${pageName}").val(userId); // 사용자 ID
|
|
|
|
|
|
|
|
$("#schRgtrNm--${pageName}").val(userNm); // 사용자 명
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 사용자 검색
|
|
|
|
|
|
|
|
$P.getFindUser = () => {
|
|
|
|
|
|
|
|
let params = {
|
|
|
|
let params = {
|
|
|
|
openerPageName : "${pageName}"
|
|
|
|
callControlName: "pageObject['${pageName}'].control"
|
|
|
|
, callbackFuncName : "pageObject['${pageName}']['callbackFindUser']"
|
|
|
|
, sggCd: $P.control.dataset.getValue("SGG_CD")
|
|
|
|
|
|
|
|
, taskSeCd: $P.control.dataset.getValue("TASK_SE_CD")
|
|
|
|
|
|
|
|
, crdnId: crdnId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ajax.get({
|
|
|
|
ajax.get({
|
|
|
|
url : wctx.url("/user/user02/010/main.do")
|
|
|
|
url: wctx.url("/" + params.taskSeCd + "/sprt/sprt02/010/main.do")
|
|
|
|
, data : params || {}
|
|
|
|
, data: params
|
|
|
|
, success : resp => {
|
|
|
|
, success: resp => {
|
|
|
|
dialog.open({
|
|
|
|
dialog.open({
|
|
|
|
id : "userDialog"
|
|
|
|
id: "totalInfoMainDialog"
|
|
|
|
, title : "사용자 검색"
|
|
|
|
, title: "개별총정보"
|
|
|
|
, content : resp
|
|
|
|
, content: resp
|
|
|
|
, size : "lg"
|
|
|
|
, size: "xxl"
|
|
|
|
|
|
|
|
, init: () => { }
|
|
|
|
|
|
|
|
, onClose: () => { }
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 개별총정보 dialog
|
|
|
|
/**************************************************************************
|
|
|
|
$P.getTotalInfo = (crdnId) => {
|
|
|
|
* 사용자 함수(function)
|
|
|
|
if (typeof crdnId == "undefined" || crdnId == null || crdnId == "") return;
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
// 검색 자료 재조회
|
|
|
|
|
|
|
|
$P.refreshList = () => {
|
|
|
|
|
|
|
|
$P.control.untilPageNum = $P.control.query.pageNum;
|
|
|
|
|
|
|
|
$P.control.query.fetchSize = $P.control.defaultFetchSize * $P.control.query.pageNum;
|
|
|
|
|
|
|
|
|
|
|
|
let params = {
|
|
|
|
$P.control.load(1);
|
|
|
|
callControlName : "pageObject['${pageName}'].control"
|
|
|
|
|
|
|
|
, sggCd : $("#sggCd--${pageName}").val()
|
|
|
|
|
|
|
|
, taskSeCd : $("input[name=taskSeCd]:checked").val()
|
|
|
|
|
|
|
|
, crdnId : crdnId
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ajax.get({
|
|
|
|
// callback 사용자 검색
|
|
|
|
url : wctx.url("/" + params.taskSeCd + "/sprt/sprt02/010/main.do")
|
|
|
|
$P.callbackFindUser = (userId, userNm) => {
|
|
|
|
, data : params
|
|
|
|
$("#schRgtrCd--${pageName}").val(userId); // 사용자 ID
|
|
|
|
, success : resp => {
|
|
|
|
$("#schRgtrNm--${pageName}").val(userNm); // 사용자 명
|
|
|
|
dialog.open({
|
|
|
|
|
|
|
|
id : "totalInfoMainDialog"
|
|
|
|
|
|
|
|
, title : "개별총정보"
|
|
|
|
|
|
|
|
, content : resp
|
|
|
|
|
|
|
|
, size : "xxl"
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 삭제 사유 callback
|
|
|
|
// 삭제 사유 callback
|
|
|
|
$P.callbackRsn = (obj) => {
|
|
|
|
$P.callbackRsn = (obj) => {
|
|
|
|
// 서버에 전송할 data(파라미터) 생성
|
|
|
|
// 서버에 전송할 data(파라미터) 생성
|
|
|
|
let params = {};
|
|
|
|
let params = {};
|
|
|
|
params[$P.control.prefixed("Ids")] = selected.join(","); // Ids
|
|
|
|
let selected = $P.control.dataset.getKeys("selected");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
params[$P.control.prefixed("Ids")] = selected.join(","); // IDs
|
|
|
|
|
|
|
|
params.sggCd = $("#sggCd--${pageName}").val(); // 시군구 코드
|
|
|
|
|
|
|
|
params.taskSeCd = $("input[name=taskSeCd]:checked").val(); // 업무 구분 코드
|
|
|
|
params.delRsn = obj.reason; // 삭제 사유
|
|
|
|
params.delRsn = obj.reason; // 삭제 사유
|
|
|
|
|
|
|
|
|
|
|
|
$P.control.remove(params);
|
|
|
|
$P.control.remove(params);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 검색 자료 재조회
|
|
|
|
|
|
|
|
$P.refreshList = () => {
|
|
|
|
|
|
|
|
$P.control.untilPageNum = $P.control.query.pageNum;
|
|
|
|
|
|
|
|
$P.control.query.fetchSize = $P.control.defaultFetchSize * $P.control.query.pageNum;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$P.control.load(1);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
/**************************************************************************
|
|
|
|
* element.on
|
|
|
|
* 버튼 clickEvent
|
|
|
|
**************************************************************************/
|
|
|
|
**************************************************************************/
|
|
|
|
// 업무 구분 변경 이벤트
|
|
|
|
// 업무 구분 변경 이벤트
|
|
|
|
$P.fnResetAndChangeBiz = (taskSeCd) => {
|
|
|
|
$P.fnResetAndChangeBiz = (taskSeCd) => {
|
|
|
@ -513,9 +496,7 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 초기 기본 설정
|
|
|
|
// 초기 기본 설정
|
|
|
|
$P.initForm();
|
|
|
|
$P.initForm(taskSeCd);
|
|
|
|
// 기본 데이터 설정
|
|
|
|
|
|
|
|
$P.initData(taskSeCd);
|
|
|
|
|
|
|
|
// 업무 구분별 설정
|
|
|
|
// 업무 구분별 설정
|
|
|
|
$P.setTask(taskSeCd);
|
|
|
|
$P.setTask(taskSeCd);
|
|
|
|
|
|
|
|
|
|
|
@ -523,10 +504,32 @@
|
|
|
|
$P.control.dataset.clear();
|
|
|
|
$P.control.dataset.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 사용자검색 버튼 클릭 이벤트
|
|
|
|
|
|
|
|
$P.fnGetFindUser = () => {
|
|
|
|
|
|
|
|
let params = {
|
|
|
|
|
|
|
|
openerPageName: "${pageName}"
|
|
|
|
|
|
|
|
, callbackFuncName: "pageObject['${pageName}']['callbackFindUser']"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ajax.get({
|
|
|
|
|
|
|
|
url: wctx.url("/user/user02/010/main.do")
|
|
|
|
|
|
|
|
, data: params || {}
|
|
|
|
|
|
|
|
, success: resp => {
|
|
|
|
|
|
|
|
dialog.open({
|
|
|
|
|
|
|
|
id: "userDialog"
|
|
|
|
|
|
|
|
, title: "사용자 검색"
|
|
|
|
|
|
|
|
, content: resp
|
|
|
|
|
|
|
|
, size: "lg"
|
|
|
|
|
|
|
|
, init: () => { setDialogZindex(); }
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 검색 버튼 이벤트
|
|
|
|
// 검색 버튼 이벤트
|
|
|
|
$P.fnSearchList = () => {
|
|
|
|
$P.fnSearchList = () => {
|
|
|
|
// 검색조건
|
|
|
|
// 검색조건
|
|
|
|
$P.control.query = $P.formFields.get();
|
|
|
|
$P.control.query = $P.formFields.get(); // 검색 조건
|
|
|
|
$P.control.query.fetchSize = $P.control.defaultFetchSize; // 한번에 조회되는 자료 건수
|
|
|
|
$P.control.query.fetchSize = $P.control.defaultFetchSize; // 한번에 조회되는 자료 건수
|
|
|
|
$P.control.query.delYn = "N"; // 삭제 여부
|
|
|
|
$P.control.query.delYn = "N"; // 삭제 여부
|
|
|
|
|
|
|
|
|
|
|
@ -540,7 +543,6 @@
|
|
|
|
content : "검색된 자료가 없습니다."
|
|
|
|
content : "검색된 자료가 없습니다."
|
|
|
|
, onOK : () => { }
|
|
|
|
, onOK : () => { }
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -552,57 +554,55 @@
|
|
|
|
$P.control.download();
|
|
|
|
$P.control.download();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 사용자 조회 버튼 이벤트
|
|
|
|
|
|
|
|
$P.fnFindUser = () => {
|
|
|
|
|
|
|
|
$P.getFindUser();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 감경 수정 버튼 이벤트
|
|
|
|
// 감경 수정 버튼 이벤트
|
|
|
|
$P.fnUpdateRduct = (title) => {
|
|
|
|
$P.fnUpdate = (title) => {
|
|
|
|
// 감경 ID
|
|
|
|
// 감경 ID
|
|
|
|
let rductId = $P.control.dataset.getValue("RDUCT_ID");
|
|
|
|
let rductId = $P.control.dataset.getValue("RDUCT_ID");
|
|
|
|
// 감경 ID 가 없다면.. return
|
|
|
|
// 감경 ID 가 없다면.. return
|
|
|
|
if (typeof rductId == "undefined" || rductId == null || rductId == "") return;
|
|
|
|
if (typeof rductId == "undefined" || rductId == null || rductId == "") return;
|
|
|
|
|
|
|
|
|
|
|
|
let params = {
|
|
|
|
let params = {
|
|
|
|
callPurpose : "update"
|
|
|
|
title: title
|
|
|
|
, title : title
|
|
|
|
, callPurpose: "update" // 호출용도: 수정
|
|
|
|
, sggCd : $P.control.dataset.getValue("SGG_CD") // 시군구 코드
|
|
|
|
, sggCd: $P.control.dataset.getValue("SGG_CD") // 시군구 코드
|
|
|
|
, taskSeCd : $P.control.dataset.getValue("TASK_SE_CD") // 업무 구분 코드
|
|
|
|
, taskSeCd: $P.control.dataset.getValue("TASK_SE_CD") // 업무 구분 코드
|
|
|
|
, rductId : rductId // 감경 ID
|
|
|
|
, rductId: rductId // 감경 ID
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
$P.control.getInfo(params);
|
|
|
|
$P.control.getInfo(params);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 감경 삭제 버튼 이벤트
|
|
|
|
// 감경 삭제 버튼 이벤트
|
|
|
|
$P.fnRemoveRduct = (title) => {
|
|
|
|
$P.fnRemove = (title) => {
|
|
|
|
// 선택 자료
|
|
|
|
// 선택 자료
|
|
|
|
let selected = $P.control.dataset.getKeys("selected");
|
|
|
|
let selected = $P.control.dataset.getKeys("selected");
|
|
|
|
|
|
|
|
|
|
|
|
if (selected.length < 1) return;
|
|
|
|
if (selected.length < 1) {
|
|
|
|
|
|
|
|
dialog.alert({
|
|
|
|
|
|
|
|
content: "선택하신 부과제외 정보가 없습니다."
|
|
|
|
|
|
|
|
, onOK: () => { }
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 삭제 메세지 확인
|
|
|
|
// 삭제 메세지 확인
|
|
|
|
dialog.alert({
|
|
|
|
dialog.alert({
|
|
|
|
content : "선택하신 " + selected.length + "건의 " + $P.control.prefixName + " 정보를 삭제하시겠습니까?"
|
|
|
|
content : "선택하신 " + selected.length + "건의 " + $P.control.prefixName + " 정보를 삭제하시겠습니까?"
|
|
|
|
, onOK : async() => {
|
|
|
|
, onOK : async() => {
|
|
|
|
// 삭제 사유 입력
|
|
|
|
// 삭제 사유 입력
|
|
|
|
var resp = await fetch(wctx.url("/resources/html/inputRsnDialog.html"));
|
|
|
|
let resp = await fetch(wctx.url("/resources/html/inputRsnDialog.html"));
|
|
|
|
var template = await resp.text();
|
|
|
|
let template = await resp.text();
|
|
|
|
|
|
|
|
|
|
|
|
dialog.open({
|
|
|
|
dialog.open({
|
|
|
|
id : "inputDelRsnDialog",
|
|
|
|
id: "inputDelRsnDialog"
|
|
|
|
title: title,
|
|
|
|
, title: title
|
|
|
|
size : "lg",
|
|
|
|
, size: "lg"
|
|
|
|
content: template,
|
|
|
|
, content: template
|
|
|
|
init : () => {
|
|
|
|
, init: () => { setDialogZindex(); }
|
|
|
|
setDialogZindex();
|
|
|
|
, onOK: () => {
|
|
|
|
},
|
|
|
|
|
|
|
|
onOK : () => {
|
|
|
|
|
|
|
|
$P.callbackRsn({ reason : $("#reason").val() });
|
|
|
|
$P.callbackRsn({ reason : $("#reason").val() });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -638,13 +638,12 @@
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 감경 수정 버튼 이벤트
|
|
|
|
// 버튼 이벤트
|
|
|
|
$("#btnUpdateRduct--${pageName}").on("click", function() {
|
|
|
|
$("#btnUpdate--${pageName}").on("click", function() {
|
|
|
|
$P.fnUpdateRduct($(this).attr("title"));
|
|
|
|
$P.fnUpdate($(this).attr("title")); // 감경 수정
|
|
|
|
});
|
|
|
|
});
|
|
|
|
// 감경 삭제 버튼 이벤트
|
|
|
|
$("#btnRemove--${pageName}").on("click", function() {
|
|
|
|
$("#btnRemoveRduct--${pageName}").on("click", function() {
|
|
|
|
$P.fnRemove($(this).attr("title")); // 감경 삭제
|
|
|
|
$P.fnRemoveRduct($(this).attr("title"));
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// DataTables width 변경 조정 업무별 그리드가 존재 한다면.. crdn06010-main.jsp 참고
|
|
|
|
// DataTables width 변경 조정 업무별 그리드가 존재 한다면.. crdn06010-main.jsp 참고
|
|
|
@ -672,56 +671,33 @@
|
|
|
|
$(this).prop("disabled", "true");
|
|
|
|
$(this).prop("disabled", "true");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//달력 초기화
|
|
|
|
|
|
|
|
initDatepicker("frmSearch--${pageName}");
|
|
|
|
|
|
|
|
$("#schRductYmdFrom--${pageName}").datepicker("setDate", new Date());
|
|
|
|
|
|
|
|
$("#schRductYmdTo--${pageName}").datepicker("setDate", new Date());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 동적 검색
|
|
|
|
|
|
|
|
$("#byOutput--${pageName}").val("동적 검색");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 사용자 이름
|
|
|
|
|
|
|
|
$("#schRgtrNm--${pageName}").prop("readonly", true);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 기본 데이터 설정
|
|
|
|
// 기본 데이터 설정
|
|
|
|
$P.initData = (taskSeCd) => {
|
|
|
|
$("#sggCd--${pageName}").val("${sggCd}"); // 시군구 코드
|
|
|
|
// 시군구 코드
|
|
|
|
$("#frmSearch--${pageName} input[name='taskSeCd'][value='" + taskSeCd + "']").prop("checked", true); // 업무 구분 코드
|
|
|
|
$("#sggCd--${pageName}").val("${sggCd}");
|
|
|
|
initDatepicker("frmSearch--${pageName}"); // 달력 초기화
|
|
|
|
// 업무 구분 코드
|
|
|
|
$("#schRductYmdFrom--${pageName}").datepicker("setDate", DateUtil.getDateDay(-7).date); // 감경 일자 시작
|
|
|
|
$("#frmSearch--${pageName} input[name='taskSeCd'][value='" + taskSeCd + "']").prop("checked", true);
|
|
|
|
$("#schRductYmdTo--${pageName}").datepicker("setDate", new Date()); // 감경 일자 종료
|
|
|
|
|
|
|
|
$("#byOutput--${pageName}").val("동적 검색"); // 동적 검색
|
|
|
|
// 일자
|
|
|
|
$("#schRgtrNm--${pageName}").prop("readonly", true); // 사용자 이름
|
|
|
|
$("#schRductYmdFrom--${pageName}").datepicker("setDate", DateUtil.getDateDay(-7).date);
|
|
|
|
|
|
|
|
$("#schRductYmdTo--${pageName}").datepicker("setDate", new Date());
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 업무 구분별 설정
|
|
|
|
// 업무 구분별 설정
|
|
|
|
$P.setTask = (taskSeCd) => {
|
|
|
|
$P.setTask = (taskSeCd) => {
|
|
|
|
let clsForTask = taskSeCd.toLowerCase();
|
|
|
|
// 업무구분에 따른 URL 설정
|
|
|
|
|
|
|
|
$P.control.urls.load = wctx.url("/" + taskSeCd + "${infoPrefixUrl}" + "/010/list.do"); // 검색
|
|
|
|
|
|
|
|
|
|
|
|
// 업무별 조회조건
|
|
|
|
// 업무별 조회조건
|
|
|
|
renderForTask("frmSearch--${pageName}", clsForTask);
|
|
|
|
renderForTask("frmSearch--${pageName}", taskSeCd.toLowerCase());
|
|
|
|
|
|
|
|
|
|
|
|
// 업무별 그리드 th
|
|
|
|
// 업무별 그리드 th
|
|
|
|
let colContent = document.getElementById("${infoPrefix}Col--${pageName}").content;
|
|
|
|
let colContent = document.getElementById("${infoPrefix}Col--${pageName}").content;
|
|
|
|
let cols = $(colContent).find("." + clsForTask + ",.cmn");
|
|
|
|
let cols = $(colContent).find("." + taskSeCd.toLowerCase() + ",.cmn");
|
|
|
|
let colsOuterHTML = "";
|
|
|
|
let colsOuterHTML = "";
|
|
|
|
|
|
|
|
|
|
|
|
cols.each(function() {
|
|
|
|
cols.each(function() {
|
|
|
|
colsOuterHTML += this.outerHTML;
|
|
|
|
colsOuterHTML += this.outerHTML;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$("#table-responsive--${pageName}")[0].changeColumn(colsOuterHTML);
|
|
|
|
$("#table-responsive--${pageName}")[0].changeColumn(colsOuterHTML);
|
|
|
|
|
|
|
|
|
|
|
|
// URL 설정
|
|
|
|
|
|
|
|
$P.setURL(taskSeCd);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 업무구분에 따른 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.getInfo = wctx.url("/" + taskSeCd + $P.PrefixUrl + "/020/info.do"); // 수정
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
/**************************************************************************
|
|
|
|