임대기업관리 수정.

main
jjh 2 months ago
parent 8ac313e2e1
commit 56518ff8b1

@ -149,28 +149,20 @@
// pageObject
let $P = pageObject["${pageName}"];
// formFields
$P.formFields = new FimsFormFields($P.selectorn("frmSearch"));
// datasetControl
$P.ctrl = newRent01010Control("${pageName}", "[data-doctx=${pageName}]");
// FormFields
$P.formFields = new FimsFormFields($P.selectorn("frmSearch"));
// paging
$P.pagingSupport = new FimsPagingSupport({
doq: $P
, linkContainer: "[name='dataPaging']"
ctrl: $P.ctrl // DatasetControl
, ignoreCtrlPrefix: true // ctrl.prefix 가 있더라도 무시
, linkContainer: "[name='dataPaging']" // <ul class="pagination pagination-primary" name="dataPaging">
});
/**************************************************************************
* DataTable 이벤트
**************************************************************************/
// DataTables에 click, dbclick 이벤트
$P.renderList = (obj, option) => {
// dataTables(그리드)에 페이지 표시 pagingInfo
$P.pagingSupport.setPagingInfo(obj);
}
// dataTable 체크박스 클릭 이벤트
$P.dataTableCheckbox = (element, bool) => {
GRID.checkbox.sync(element, bool);
@ -192,9 +184,10 @@
// dataTable 더블 클릭 이벤트
$P.dataTableDblClick = (dataIndex) => {
// let aaa = $P.ctrl.dataset.getData(dataIndex, "item"); // dataIndex에 해당 하는 dataItem을 가져온다.
let params = {
callPurpose: "update"
, mpngId: dataIndex
mpngId: $P.ctrl.getValue("MPNG_ID")
, userId: $P.ctrl.getValue("USER_ID")
, schEntNo: $P.ctrl.getValue("ENT_NO")
};
@ -224,6 +217,11 @@
$P.fnReset = () => {
// 화면 초기화
$P.findn("frmSearch").reset();
// dataset 초기화
$P.ctrl.dataset.clear();
// URL 설정
$P.fnSetUrl("${prefixUrl}");
// input, select 초기화
let searchForm = $P.$findn("frmSearch");
@ -240,12 +238,6 @@
$P.$findn("userId").val("${userId}"); // 사용자 ID
$P.$findn("schUserAcnt").val("${userAcnt}"); // 사용자 계정
// dataset 초기화
$P.ctrl.dataset.clear();
// URL 설정
$P.fnSetUrl("${prefixUrl}");
// 그리드 th
let colContent = $P.findn("tmpltCols").content;
let cols = $(colContent).find(".cmn");
@ -289,9 +281,8 @@
// 임대기업 매핑 등록 버튼 이벤트
$P.fnCreate = () => {
let params = {
callPurpose: "create"
, userId: $P.$findn("userId").val()
, schEntNo: ""
userId: $P.$findn("userId").val()
, schEntNo: null
};
$P.ctrl.getInfo(params);
@ -299,7 +290,7 @@
// 임대기업 매핑 삭제 버튼 이벤트
$P.fnRemove = () => {
let selected = $P.ctrl.dataset.getKeys("selected"); // 선택 자료
let selected = $P.ctrl.getDataset("selected"); // 선택 자료
if (selected.length < 1) {
dialog.alert({
@ -314,8 +305,7 @@
content: "선택한 " + selected.length + "건의 " + $P.ctrl.prefixName + " 정보를 삭제하시겠습니까?"
, onOK: () => {
let params = {
callPurpose: "create"
, mpngIds: selected.join(",")
mpngIds: selected.map(info => info.MPNG_ID).join(",")
}
$P.ctrl.remove(params);

@ -1,7 +1,7 @@
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%>
<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%>
<c:set var="prefixName" scope="request">임대기업 매핑 정보</c:set>
<c:set var="prefixName" scope="request">임대기업매핑 정보</c:set>
<!-- inner page html -->
<div class="content-pop" data-doctx="${pageName}">
@ -49,7 +49,7 @@
<!-- 업무 버튼 및 건수 표시 -->
<div>
<span class="container-page-btn">
<div class="container-page-btn" name="gridButtonArea">
<!-- 건수, 페이지 표시 -->
<div class="d-flex flex-row justify-content-between">
<span is="paging-info" class="dataTables_info" name="dataPagingInfo" role="status" aria-live="polite"></span>
@ -68,7 +68,7 @@
기업 삭제
</button>
</span>
</span>
</div>
</div>
<!-- 업무 버튼 및 건수 표시 -->
@ -79,6 +79,9 @@
<table class="table-layout-fixed dataTable datatables-ajax table table-bordered no-footer" aria-describedby="DataTables_Table_0_info">
<thead class="sticky-thead">
<tr name="theadTr" data-search-target="[data-doctx='${pageName}']">
</tr>
</thead>
<template name="tmpltCols">
<th class="cmn" style="width: 72px;">No.</th>
<th class="cmn" style="width: 56px;"><input type="checkbox" class="form-check-input" name="gridAllCheckbox" onchange="pageObject['${pageName}'].dataTableCheckbox(this, this.checked);" /></th>
<th class="cmn" style="width: 200px;">기업명</th>
@ -90,14 +93,14 @@
<th class="cmn" style="width: 280px;">주소</th>
<th class="cmn" style="width: 180px;">등록일시</th>
<th class="cmn dummy-th"></th>
</tr>
</thead>
</template>
<tbody name="tbodyList">
</tbody>
<template is="curly-brackets" name="tmpltRows">
<tr data-key="ENT_ID">
<tr data-index="{data-index}">
<td class="cmn text-center" onclick ondblclick>{ROW_NUM}</td>
<td class="cmn text-center"><input type="checkbox" class="form-check-input" name="gridCheckbox" value="ENT_ID" onchange="pageObject['${pageName}'].dataTableCheckbox(this, this.checked);" /></td>
<td class="cmn text-center"><input type="checkbox" class="form-check-input" name="gridCheckbox" value="{data-index}" onchange="pageObject['${pageName}'].dataTableCheckbox(this, this.checked);" /></td>
<td class="cmn text-start" onclick ondblclick>{ENT_NM}</td>
<td class="cmn text-center" onclick ondblclick>{ENT_NO}</td>
<td class="cmn text-center" onclick ondblclick>{RPRSV_NM}</td>
@ -110,7 +113,7 @@
</tr>
</template>
<template name="tmpltNotFound">
<tr class="odd">
<tr class="cmn">
<td valign="top" colspan="11" class="dataTables_empty text-center">${prefixName} 정보를 찾지 못했습니다.</td>
</tr>
</template>
@ -126,6 +129,8 @@
<!-- / inner page html <div class="content-pop"> -->
<script>
LoadScript("rent01020Script", wctx.url("/webjars/js/fims/rent/rent01020.js?ver=${ver}"));
/**************************************************************************
* Global Variable
**************************************************************************/
@ -138,168 +143,20 @@
// pageObject
let $P = pageObject["${pageName}"];
// FormFields
// formFields
$P.formFields = new FimsFormFields($P.selectorn("frmSearch"));
/**************************************************************************
* DatasetControl
**************************************************************************/
$P.ctrl = new DatasetControl({
prefix: "rentEnt"
, prefixName: "임대 기업"
, keymapper: info => info ? info.ENT_ID : ""
, dataGetter: obj => obj["List"]
, appendData: true
, infoSize: "lg"
, urls: {
create: wctx.url("${prefixUrl}" + "/020/createMpng.do") // 매핑 등록
, load: wctx.url("${prefixUrl}" + "/020/list.do") // 임대기업 검색
, remove: wctx.url("${prefixUrl}" + "/020/remove.do") // 임대기업 삭제
, getInfo: wctx.url("${prefixUrl}" + "/030/info.do") // 임대기업 상세 정보
}
, formats: {
REG_DT: datetimeFormat
}
// datasetControl
$P.ctrl = newRent01020Control("${pageName}", "[data-doctx=${pageName}]");
// paging
$P.pagingSupport = new FimsPagingSupport({
ctrl: $P.ctrl // DatasetControl
, ignoreCtrlPrefix: true // ctrl.prefix 가 있더라도 무시
, linkContainer: "[name='dataPaging']" // <ul class="pagination pagination-primary" name="dataPaging">
});
// 검색 조건
$P.ctrl.query = { pageNum: 1, fetchSize: DEFAULT_FETCH_SIZE }; // 1 페이지당 자료 건수 index.jsp에서 확인
/**************************************************************************
* DatasetControl 이벤트
**************************************************************************/
// Dataset 변경 이벤트
$P.ctrl.onDatasetChange = (obj, option) => {
$P.renderList(obj["Total"], option);
// datasetPaging
Apply.fromDataset.paging($P.ctrl.dataset, obj, $P.findn("dataPaging"), $P.findn("dataPagingInfo"));
};
// 현재 선택 자료 변경 이벤트
$P.ctrl.onCurrentChange = (item) => {
if (!item) return;
let key = item.data.ENT_ID;
$P.$findn("tbodyList").setCurrentRow(key);
};
// 선택(체크) 변경 이벤트
$P.ctrl.onSelectionChange = (selected) => {
Apply.fromDataset.gridCheckbox($P.ctrl.dataset, $P.findn("tbodyList"), 1, selected);
Apply.fromDataset.gridButton($P.ctrl.dataset, $P.findn("btnOK"), selected); // 선택 확인 버튼
Apply.fromDataset.gridButton($P.ctrl.dataset, $P.findn("btnRemove"), selected); // 삭제 버튼
};
// 사용자 임대기업 매핑 저장
$P.ctrl.save = (params) => {
if (!params) return;
ajax.post({
url: $P.ctrl.urls.create
, data: params || {}
, success: (resp) => {
let dialogTitle = $("#" + $P.selfDlgId()).find("h5.modal-title").html();
let showMessage = resp.rtnMsg.replace(/[S]|[F]/g, dialogTitle);
// 메시지 출력
dialog.alert({
content: showMessage
, init: () => { AppSupport.setDialogZindex(); }
, onOK: () => { }
, onClose: () => {
if (resp.saved) { dialog.close($P.selfDlgId()); }
}
});
}
});
}
// 임대기업 상세정보 dialog
$P.ctrl.getInfo = (params) => {
if (!params) return;
ajax.get({
url: $P.ctrl.urls.getInfo
, data: params || {}
, success: (resp) => {
let dialogName = $P.ctrl.prefixed("Dialog");
let dialogId = dialogName + "-" + uuid();
dialog.open({
id: dialogId
, title: $P.ctrl.prefixName + " 정보"
, size: $P.ctrl.infoSize
, content: resp
, init: () => {
AppSupport.setDialogZindex();
$("#" + dialogId).attr("name", dialogName);
$("#" + dialogId).attr("data-ref-doctx", "${pageName}");
}
, onClose: () => { $P.ctrl.reload({ all: true }); } // 자료 재조회
});
}
});
}
// 삭제 callback
$P.ctrl.onRemove = (params, resp) => {
let showMessage = resp.rtnMsg.replace(/[S]|[F]/g, $P.ctrl.prefixName);
// 메시지 출력
dialog.alert({
content: showMessage
, init: () => { AppSupport.setDialogZindex(); }
, onOK: () => { }
, onClose: () => {
if (resp.saved) { $P.ctrl.reload({ all: true }); } // 자료 재조회
}
});
}
// 삭제
$P.ctrl.remove = (params) => {
if (!params) return;
ajax.post({
url: $P.ctrl.urls.remove
, data: params || {}
, success: (resp) => { $P.ctrl.onRemove(params, resp); }
});
}
/**************************************************************************
* DataTable 이벤트
**************************************************************************/
// DataTable에 click, dbclick 이벤트
$P.renderList = (totalSize, option) => {
let dataList = $P.ctrl.dataset;
let empty = dataList.empty;
let trs = empty ? [$P.findn("tmpltNotFound").innerHTML] :
dataList.inStrings($P.findn("tmpltRows").innerHTML
, (str, dataItem) => str
.replace(/{onclick}/gi, "pageObject['${pageName}'].dataTableClick('" + dataItem.getValue("ENT_ID") + "');")
.replace(/{ondblclick}/gi, "pageObject['${pageName}'].dataTableDblClick('" + dataItem.getValue("ENT_ID") + "');")
);
let noMore = (dataList.length >= totalSize);
let initScroll = ($P.ctrl.query.pageNum < 2);
if (option != null && option.reloaded) {
initScroll = false;
}
$P.findn("tableRspns").changeContent(trs.join(), initScroll, noMore);
// checkbox 체크 해제
$P.$findn("gridAllCheckbox").prop("checked", false);
// 보안모드
fn_securityModeToggle($("#securityMode--top").is(":checked"));
}
// dataTable 체크박스 클릭 이벤트
$P.dataTableCheckbox = (element, bool) => {
GRID.checkbox.sync(element, bool);
@ -312,19 +169,18 @@
}
// dataTable 클릭 이벤트
$P.dataTableClick = (dataKey) => {
if (dataKey == "") return;
$P.dataTableClick = (dataIndex) => {
if (dataIndex == "") return;
$P.$findn("tbodyList").setCurrentRow(dataKey);
$P.$findn("tbodyList").setCurrentRow(dataIndex);
Apply.toDataset.current($P.ctrl.dataset, dataKey);
Apply.toDataset.current($P.ctrl.dataset, dataIndex);
}
// dataTable 더블 클릭 이벤트
$P.dataTableDblClick = (dataKey) => {
$P.dataTableDblClick = (dataIndex, dataKey) => {
let params = {
callPurpose: "update"
, entId: dataKey
entId: $P.ctrl.getValue("ENT_ID")
};
$P.ctrl.getInfo(params);
@ -338,7 +194,13 @@
/**************************************************************************
* 사용자 함수(function)
**************************************************************************/
// URL 설정
$P.fnSetUrl = (prefixUrl) => {
$P.ctrl.urls.load = wctx.url(prefixUrl + "/020/list.do"); // 검색
$P.ctrl.urls.create = wctx.url(prefixUrl + "/020/createMpng.do") // 등록
$P.ctrl.urls.remove = wctx.url(prefixUrl + "/020/removeEnt.do") // 삭제
$P.ctrl.urls.getInfo = wctx.url(prefixUrl + "/030/info.do"); // 상세 정보
}
/**************************************************************************
* 버튼 clickEvent
@ -347,15 +209,27 @@
$P.fnReset = (initSearchYN) => {
// 화면 초기화
$P.findn("frmSearch").reset();
// dataset 초기화
$P.ctrl.dataset.clear();
// URL 설정
$P.fnSetUrl("${prefixUrl}");
// 기본 데이터 설정
$P.$findn("userId").val("${userId}"); // 사용자 ID
$P.$findn("schEntNo").val("${schEntNo}"); // 기업 번호
if (initSearchYN && $("#schEntNo--${pageName}").val() != "") {
// 그리드 th
let colContent = $P.findn("tmpltCols").content;
let cols = $(colContent).find(".cmn");
let colsOuterHTML = "";
cols.each(function() {
colsOuterHTML += this.outerHTML;
});
$P.findn("tableRspns").changeColumn(colsOuterHTML);
if (initSearchYN && $P.$findn("schEntNo").val() != "") {
$P.fnSearchList();
}
}
@ -390,7 +264,7 @@
// 확인
$P.fnOK = () => {
let selected = $P.ctrl.dataset.getKeys("selected");
let selected = $P.ctrl.getDataset("selected");
if (selected.length < 1) {
dialog.alert({
@ -406,7 +280,7 @@
let params = {
callPurpose: "create"
, userId: $P.$findn("userId").val()
, entIds: selected.join(",")
, entIds: selected.map(info => info.ENT_ID).join(",")
}
$P.ctrl.save(params);
@ -417,7 +291,7 @@
// 임대기업 등록 버튼 클릭 이벤트
$P.fnCreate = () => {
let params = {
callPurpose: "create"
entId: null
};
$P.ctrl.getInfo(params);
@ -431,8 +305,7 @@
if (typeof entId == "undefined" || entId == null || entId == "") return;
let params = {
callPurpose: "update"
, entId: entId
entId: entId
};
$P.ctrl.getInfo(params);
@ -440,19 +313,24 @@
// 임대기업 삭제 버튼 클릭 이벤트
$P.fnRemove = () => {
let selected = $P.ctrl.dataset.getKeys("selected");
if (selected.length < 1) return;
let selected = $P.ctrl.getDataset("selected"); // 선택 자료
if (selected.length < 1) {
dialog.alert({
content: "선택한 " + $P.ctrl.prefixName + " 정보를 삭제하시겠습니까?"
, onOK: () => {
let params = {
entIds: selected.join(",")
content: "선택하신 " + $P.ctrl.prefixName + " 정보가 없습니다."
, init: () => { AppSupport.setDialogZindex(); }
, onOK: () => { }
});
return;
}
$P.ctrl.remove(params);
}
let params = {
entIds: selected.map(info => info.ENT_ID).join(",")
};
dialog.alert({
content: "선택한 " + selected.length + "건의 " + $P.ctrl.prefixName + " 정보를 삭제하시겠습니까?"
, onOK: () => { $P.ctrl.remove(params); }
});
}

@ -74,7 +74,7 @@
<!-- 업무 버튼 및 건수 표시 -->
<div>
<span class="container-page-btn">
<span class="container-page-btn" name="gridButtonArea">
<!-- 업무 버튼 -->
<span class="container-window-btn-right">
<button type="button" class="btn btn-success w-px-120" name="btnSave" title="저장">
@ -91,6 +91,8 @@
<!-- / inner page html <div class="content-pop"> -->
<script>
LoadScript("rent01030Script", wctx.url("/webjars/js/fims/rent/rent01030.js?ver=${ver}"));
/**************************************************************************
* Global Variable
**************************************************************************/
@ -103,67 +105,20 @@
// pageObject
let $P = pageObject["${pageName}"];
// infoDialog 호출 용도(view 조회(편집불가), create 등록, update 수정)
$P.callPurpose = "${callPurpose}";
// FormFields
// formFields
$P.formFields = new FimsFormFields($P.selectorn("frmEdit"));
// datasetControl
$P.ctrl = newRent01030Control("${pageName}", "[data-doctx=${pageName}]");
/**************************************************************************
* DatasetControl
* 사용자 함수(function)
**************************************************************************/
$P.ctrl = new DatasetControl({
prefix: "rentEnt"
, prefixName: "임대 기업"
, keymapper: info => info ? info.ENT_ID : ""
, dataGetter: obj => obj["Info"]
, urls: {
create: wctx.url("${prefixUrl}" + "/030/create.do") // 등록
, update: wctx.url("${prefixUrl}" + "/030/update.do") // 수정
// URL 설정
$P.fnSetUrl = (prefixUrl) => {
$P.ctrl.urls.create = wctx.url(prefixUrl + "/030/createEnt.do") // 등록
$P.ctrl.urls.update = wctx.url(prefixUrl + "/030/updateEnt.do") // 수정
}
});
/**************************************************************************
* DatasetControl 이벤트
**************************************************************************/
// 현재 선택 자료 변경 이벤트
$P.ctrl.onCurrentChange = (item) => {
if (!item) return;
// 화면에 Dataset 셋팅
$P.formFields.set($P.ctrl, item);
let key = item.data.ENT_ID;
};
// 저장
$P.ctrl.save = (params) => {
if (!params) return;
let create = ($P.callPurpose == "create");
ajax.post({
url: !create ? $P.ctrl.urls.update : $P.ctrl.urls.create
, data: params || {}
, success: (resp) => {
let dialogTitle = $("#" + $P.selfDlgId()).find("h5.modal-title").html();
let showMessage = resp.rtnMsg.replace(/[S]|[F]/g, dialogTitle);
// 메시지 출력
dialog.alert({
content: showMessage
, init: () => { AppSupport.setDialogZindex(); }
, onOK: () => { }
, onClose: () => {
if (resp.saved) { dialog.close($P.selfDlgId()); }
}
});
}
});
}
/**************************************************************************
* 사용자 함수(function)
**************************************************************************/
// 우편번호 검색 결과
$P.callbackSearchAddr = (obj) => {
$P.$findn("entAddr").val(obj.ADDR); // 주소
@ -174,6 +129,15 @@
/**************************************************************************
* 버튼 clickEvent
**************************************************************************/
// 업무 구분 변경 이벤트
$P.fnReset = (initSearchYN) => {
// 화면 초기화
$P.findn("frmEdit").reset();
// URL 설정
$P.fnSetUrl("${prefixUrl}");
}
// 우편번호 검색
$P.fnZipCode = async() => {
let resp = await fetch(wctx.url("/webjars/html/searchAddr.html"));
@ -200,7 +164,17 @@
dialog.alert({
content: "현재 " + $P.ctrl.prefixName + " 정보를 저장하시겠습니까?"
, init: () => { AppSupport.setDialogZindex(); }
, onOK: () => { $P.ctrl.save($P.formFields.get()); } // formFields
, onOK: () => {
let params = $P.formFields.get();
if (params.entId) {
params.callPurpose = "update";
} else {
params.callPurpose = "create";
}
$P.ctrl.save(params);
}
});
}
@ -215,20 +189,14 @@
$P.$findn("btnSave").on("click", () => { $P.fnSave() }); // 저장
}
// 화면 초기 설정
$P.initForm = () => {
// 화면 초기화
$P.findn("frmEdit").reset();
}
/**************************************************************************
* 최초 실행 함수
**************************************************************************/
// 1. 이벤트 설정
$P.setEvent();
// 2. 초기 화면 설정
$P.initForm();
// 2. 초기 설정
$P.fnReset();
// 3. dataset 설정
$P.ctrl.setData([${Info}]);

@ -22,12 +22,6 @@ function newRent01010Control(pageName, doctx="[data-doctx='rent01010']") {
// 검색 조건
ctrl.query = { pageNum: 1, fetchSize: DEFAULT_FETCH_SIZE }; // 1 페이지당 자료 건수 index.jsp에서 확인
// paging
// ctrl.pagingSupport = new FimsPagingSupport({
// doq: ctrl
// , linkContainer: "[name='dataPaging']"
// });
/**************************************************************************
* DatasetControl Events
**************************************************************************/
@ -68,7 +62,7 @@ function newRent01010Control(pageName, doctx="[data-doctx='rent01010']") {
$(ctrl.find("[name='gridAllCheckbox']")).prop("checked", false);
// dataTables(그리드)에 페이지 표시 pagingInfo
pageObject[pageName].renderList(obj, option);
pageObject[pageName].pagingSupport.setPagingInfo(obj);
};
// 현재 선택 자료 변경 이벤트
@ -106,7 +100,7 @@ function newRent01010Control(pageName, doctx="[data-doctx='rent01010']") {
AppSupport.setDialogZindex();
}
, onClose: () => { ctrl.reload({ all: true }); }
, onClose: () => { } // ctrl.reload();
});
}
});

@ -0,0 +1,163 @@
function newRent01020Control(pageName, doctx="[data-doctx='rent01020']") {
let ctrl = new DatasetControl({
doctx: doctx
, prefix: "rentEnt"
, prefixName: "임대기업"
, dataGetter: obj => obj["List"]
, keys: ["ENT_ID"]
, appendData: true
, infoSize: "lg"
, urls: {
load: "/list.do"
, getInfo: "/info.do"
, create: "/create.do"
, update: "/update.do"
, remove: "/remove.do"
}
, formats: {
REG_DT: datetimeFormat
}
});
// 검색 조건
ctrl.query = { pageNum: 1, fetchSize: DEFAULT_FETCH_SIZE }; // 1 페이지당 자료 건수 index.jsp에서 확인
/**************************************************************************
* DatasetControl Events
**************************************************************************/
// Dataset 변경 이벤트
ctrl.onDatasetChange = (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('{data-index}');");
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;
}
// dataTables(그리드)에 자료 표시 td
ctrl.find("[name='tableRspns']").changeContent(trs.join(), initScroll, noMore);
// checkbox 체크 해제
$(ctrl.find("[name='gridAllCheckbox']")).prop("checked", false);
// dataTables(그리드)에 페이지 표시 pagingInfo
pageObject[pageName].pagingSupport.setPagingInfo(obj);
};
// 현재 선택 자료 변경 이벤트
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);
// gridButton
Apply.fromDataset.gridButton(ctrl.dataset, ctrl.find("[name='btnOK']"), 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();
});
}
});
}
// 저장 callback
ctrl.onSave = (params, resp) => {
let showMessage = resp.rtnMsg.replace(/[S]|[F]/g, ctrl.prefixName);
// 메시지 출력
dialog.alert({
content: showMessage
, init: () => { AppSupport.setDialogZindex(); }
, onOK: () => { }
, onClose: () => {
if (resp.saved) { dialog.close($(document.querySelector(doctx)).parents(".modal")[0].id); }
}
});
}
// 저장
ctrl.save = (params) => {
if (!params) return;
ajax.post({
url: ctrl.urls.create
, data: params || {}
, success: (resp) => { ctrl.onSave(params, resp); }
});
}
// 삭제 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;
}

@ -0,0 +1,56 @@
function newRent01030Control(pageName, doctx="[data-doctx='rent01030']") {
let ctrl = new DatasetControl({
doctx: doctx
, prefix: "rentEnt"
, prefixName: "임대기업"
, dataGetter: obj => obj["Info"]
, keys: ["ENT_ID"]
, appendData: true
, urls: {
create: "/create.do"
, update: "/update.do"
}
});
/**************************************************************************
* DatasetControl Events
**************************************************************************/
// 현재 선택 자료 변경 이벤트
ctrl.onCurrentChange = (item) => {
if (!item) return;
// 화면에 Dataset 셋팅
pageObject[pageName].formFields.set(ctrl, item);
};
// 저장 callback
ctrl.onSave = (params, resp) => {
let showMessage = resp.rtnMsg.replace(/[S]|[F]/g, ctrl.prefixName);
let modalId = $(document.querySelector(doctx)).parents(".modal")[0].id;
// 메시지 출력
dialog.alert({
content: showMessage
, init: () => { AppSupport.setDialogZindex(); }
, onOK: () => { }
, onClose: () => {
if (resp.saved) { dialog.close(modalId); }
}
});
}
// 저장
ctrl.save = (params) => {
if (!params) return;
let create = (params.callPurpose == "create");
ajax.post({
url: !create ? ctrl.urls.update : ctrl.urls.create
, data: params || {}
, success: (resp) => { ctrl.onSave(params, resp); }
});
}
return ctrl;
}
Loading…
Cancel
Save