임대계약서 관리 수정.
parent
b85f846602
commit
8f485fe9c4
@ -0,0 +1,151 @@
|
|||||||
|
function newRent02010Control(pageObj, pageName, doctx="[data-doctx='rent02010']") {
|
||||||
|
let ctrl = new DatasetControl({
|
||||||
|
doctx: doctx
|
||||||
|
, prefix: "lsct"
|
||||||
|
, prefixName: "임대차계약"
|
||||||
|
, dataGetter: obj => obj["List"]
|
||||||
|
, keys: ["CRDN_ID"]
|
||||||
|
, appendData: true
|
||||||
|
, infoSize: "xl"
|
||||||
|
, urls: {
|
||||||
|
load: "/list.do"
|
||||||
|
, getInfo: "/info.do"
|
||||||
|
, create: "/create.do"
|
||||||
|
, update: "/update.do"
|
||||||
|
, remove: "/remove.do"
|
||||||
|
}
|
||||||
|
, formats: {
|
||||||
|
CRDN_YMD_TM: datetimeFormat
|
||||||
|
, FFNLG_CRDN_AMT: numberFormat
|
||||||
|
, REG_DT: datetimeFormat
|
||||||
|
, MDFCN_DT: datetimeFormat
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 검색 조건
|
||||||
|
ctrl.query = { pageNum: 1, fetchSize: DEFAULT_FETCH_SIZE }; // 1 페이지당 자료 건수 index.jsp에서 확인
|
||||||
|
|
||||||
|
// paging
|
||||||
|
pagingSupport = new FimsPagingSupport({
|
||||||
|
doq: pageObj
|
||||||
|
, linkContainer: "[name='dataPaging']"
|
||||||
|
});
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
* DatasetControl Events
|
||||||
|
**************************************************************************/
|
||||||
|
// Dataset 변경 이벤트
|
||||||
|
ctrl.onDatasetChange = (obj, option) => {
|
||||||
|
// pageObj.renderList(obj, option);
|
||||||
|
|
||||||
|
|
||||||
|
// 데이터 셋
|
||||||
|
let dataList = ctrl.dataset;
|
||||||
|
let empty = dataList.empty;
|
||||||
|
|
||||||
|
// 업무별 DataTables(그리드) tr, td
|
||||||
|
let foundContent = ctrl.find("[name='tmpltRows']").content;
|
||||||
|
let foundTr = $(foundContent).find("tr")[0].cloneNode(false);
|
||||||
|
let foundTds = $(foundContent).find(".cmn");
|
||||||
|
|
||||||
|
foundTds.each(function() {
|
||||||
|
foundTr.appendChild(this.cloneNode(true));
|
||||||
|
});
|
||||||
|
|
||||||
|
let replacer = (str, dataItem) => str
|
||||||
|
.replace(/{onclick}/gi, "pageObject['" + pageName + "'].dataTableClick('{DATA-INDEX}');")
|
||||||
|
.replace(/{ondblclick}/gi, "pageObject['" + pageName + "'].dataTableDblClick('{CRDN_ID}');");
|
||||||
|
|
||||||
|
let trs = empty ?
|
||||||
|
[ctrl.find("[name='tmpltNotFound']").content.querySelector(".cmn").outerHTML]
|
||||||
|
: dataList.inStrings(foundTr.outerHTML, replacer);
|
||||||
|
|
||||||
|
let noMore = (dataList.length >= obj["Total"]);
|
||||||
|
let initScroll = (ctrl.query.pageNum < 2);
|
||||||
|
|
||||||
|
if (option != null && option.reloaded) {
|
||||||
|
initScroll = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
ctrl.find("[name='tableRspns']").changeContent(trs.join(), initScroll, noMore);
|
||||||
|
|
||||||
|
// checkbox 체크 해제
|
||||||
|
$(ctrl.find("[name='gridAllCheckbox']")).prop("checked", false);
|
||||||
|
|
||||||
|
// pagingInfo
|
||||||
|
pagingSupport.setPagingInfo(obj);
|
||||||
|
|
||||||
|
// 보안모드
|
||||||
|
fn_securityModeToggle($("#securityMode--top").is(":checked"));
|
||||||
|
};
|
||||||
|
|
||||||
|
// 현재 선택 자료 변경 이벤트
|
||||||
|
ctrl.onCurrentChange = (item) => {
|
||||||
|
Apply.fromDataset.currentRow(ctrl.dataset, item, ctrl.find("[name='tbodyList']"));
|
||||||
|
};
|
||||||
|
|
||||||
|
// 선택(체크) 변경 이벤트
|
||||||
|
ctrl.onSelectionChange = (selectedArr) => {
|
||||||
|
// gridCheckbox
|
||||||
|
Apply.fromDataset.gridCheckbox(ctrl.dataset, ctrl.find("[name='tbodyList']"), 1, selectedArr);
|
||||||
|
// 삭제 버튼
|
||||||
|
Apply.fromDataset.gridButton(ctrl.dataset, ctrl.find("[name='btnRemove']"), selectedArr);
|
||||||
|
};
|
||||||
|
|
||||||
|
// 상세 정보 dialog
|
||||||
|
ctrl.getInfo = (params) => {
|
||||||
|
if (!params) return;
|
||||||
|
|
||||||
|
ajax.get({
|
||||||
|
url: ctrl.urls.getInfo
|
||||||
|
, data: params || {}
|
||||||
|
, success: (resp) => {
|
||||||
|
let dialogName = ctrl.prefixed("Dialog");
|
||||||
|
let dialogId = dialogName + "-" + uuid();
|
||||||
|
|
||||||
|
dialog.open({
|
||||||
|
id: dialogId
|
||||||
|
, title: ctrl.prefixName + " 정보"
|
||||||
|
, size: ctrl.infoSize
|
||||||
|
, content: resp
|
||||||
|
, init: () => {
|
||||||
|
$("#" + dialogId).attr("name", dialogName);
|
||||||
|
$("#" + dialogId).attr("data-ref-doctx", pageName);
|
||||||
|
|
||||||
|
AppSupport.setDialogZindex();
|
||||||
|
}
|
||||||
|
, onClose: () => { ctrl.reload({ all: true }); }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 삭제 callback
|
||||||
|
ctrl.onRemove = (params, resp) => {
|
||||||
|
let showMessage = resp.rtnMsg.replace(/[S]|[F]/g, ctrl.prefixName);
|
||||||
|
|
||||||
|
// 메시지 출력
|
||||||
|
dialog.alert({
|
||||||
|
content: showMessage
|
||||||
|
, init: () => { AppSupport.setDialogZindex(); }
|
||||||
|
, onOK: () => { }
|
||||||
|
, onClose: () => {
|
||||||
|
if (resp.saved) { ctrl.reload({ all: true }); }
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 삭제
|
||||||
|
ctrl.remove = (params) => {
|
||||||
|
if (!params) return;
|
||||||
|
|
||||||
|
ajax.post({
|
||||||
|
url: ctrl.urls.remove
|
||||||
|
, data: params || {}
|
||||||
|
, success: (resp) => { ctrl.onRemove(params, resp); }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return ctrl;
|
||||||
|
}
|
Loading…
Reference in New Issue