임대기업 ID 검색 조건 추가.

main
jjh 2 months ago
parent 565d4e989c
commit 6092c296f4

@ -44,11 +44,11 @@
</div>
<!-- 기업 번호 -->
<div class="col-6">
<label is="name-label" class="form-label form-search-title w-px-120 text-end fw-bold" for="schEntNo">임대기업번호</label>
<select is="id-select" class="form-select w-px-160" name="schEntNo">
<label is="name-label" class="form-label form-search-title w-px-120 text-end fw-bold" for="entId">임대기업번호</label>
<select is="id-select" class="form-select w-px-160" name="entId">
<option value="">전체</option>
<c:forEach items="${entNoList}" var="item">
<option value="${item.ENT_NO}">${item.ENT_NO}</option>
<c:forEach items="${entRegNoList}" var="item">
<option value="${item.ENT_ID}">${item.ENT_REG_NO}</option>
</c:forEach>
</select>
</div>
@ -304,7 +304,7 @@
// URL 설정
$P.setUrl = (prefixUrl) => {
$P.ctrl.urls.load = wctx.url(prefixUrl + "/010/list.do"); // 검색
$P.ctrl.urls.remove = wctx.url(prefixUrl + "/010/remove.do") // 삭제
$P.ctrl.urls.remove = wctx.url(prefixUrl + "/010/removeCtrt.do") // 삭제
$P.ctrl.urls.getInfo = wctx.url(prefixUrl + "/020/info.do"); // 상세 정보
}
@ -330,7 +330,9 @@
AppSupport.setDialogZindex();
}
, onClose: () => { }
, onClose: () => {
if (resp.saved) { $P.ctrl.reload({ all: true }); }
}
});
}
});
@ -484,11 +486,11 @@
$P.ctrl.query.trgtSttsNm = tabName;
// 임대기업번호가 전체라면..
if ($P.ctrl.query.schEntNo == "" ) {
if ($P.ctrl.query.entId == "" ) {
// schEntNo 의 option을 전체를 배열로 담는다.
let arrEntNo = $.map($P.$findn("schEntNo").find("option"), function(e) { return e.value; });
let arrEntId = $.map($P.$findn("entId").find("option"), function(e) { return e.value; });
if (arrEntNo.length == 1) {
if (arrEntId.length == 1) {
dialog.alert({
content: "등록되어 있는 임대기업 정보가 없습니다."
+ "<br>" + "'임대기업관리' 메뉴에서 임대기업 정보를 먼저 등록하시기 바랍니다."
@ -498,8 +500,8 @@
return;
}
// 빈 값(전체)을 제외하고 "," 로 구분하여 schEntNos 에 담는다.
$P.ctrl.query.schEntNos = arrEntNo.filter((element) => element !== "").join(',');
// 빈 값(전체)을 제외하고 "," 로 구분하여 entIds 에 담는다.
$P.ctrl.query.entIds = arrEntId.filter((element) => element !== "").join(',');
}
$P.ctrl.load(1);

Loading…
Cancel
Save