임대계약서 관리 수정.

main
jjh 2 months ago
parent 69cf4d734c
commit 7c5c8715e4

@ -462,14 +462,18 @@
// 이벤트
$P.setEvent = () => {
// 기본 버튼 이벤트
$P.$findn("btnReset").on("click", () => { $P.fnReset(); }); // 초기화
$P.$findn("btnSearch").on("click", () => { $P.fnSearchList(); }); // 검색
$P.$findn("btnOK").on("click", () => { $P.fnOK(); }); // 선택 확인
$P.$findn("btnReset").on("click", () => { $P.fnReset(); }); // 초기화
$P.$findn("btnSearch").on("click", () => { $P.fnSearchList(); }); // 검색
$P.$findn("btnOK").on("click", () => { $P.fnOK(); }); // 선택 확인
// input에서 엔터(Enter) 키를 누르면 검색한다.
$P.$findn("schEntNo").onEnterPress($P.fnSearchList); // 법인(사업자)번호
$P.$findn("schEntNm").onEnterPress($P.fnSearchList); // 기업명
// 업무 버튼 이벤트
$P.$findn("btnCreate").on("click", () => { $P.fnCreate(); }); // 등록
$P.$findn("btnUpdate").on("click", () => { $P.fnUpdate(); }); // 수정
$P.$findn("btnRemove").on("click", () => { $P.fnRemove(); }); // 삭제
$P.$findn("btnCreate").on("click", () => { $P.fnCreate(); }); // 등록
$P.$findn("btnUpdate").on("click", () => { $P.fnUpdate(); }); // 수정
$P.$findn("btnRemove").on("click", () => { $P.fnRemove(); }); // 삭제
// DataTable width 변경 조정
Componentization.fnMakeResizableTable($P.findn("tableRspns"));

@ -416,6 +416,16 @@
// schEntNo 의 option을 전체를 배열로 담는다.
let arrEntNo = $.map($P.$findn("schEntNo").find("option"), function(e) { return e.value; });
if (arrEntNo.length == 1) {
dialog.alert({
content: "등록되어 있는 임대기업 정보가 없습니다."
+ "<br>" + "'임대기업관리' 메뉴에서 임대기업 정보를 먼저 등록하시기 바랍니다."
, init: () => { AppSupport.setDialogZindex(); }
, onOK: () => { }
});
return;
}
// 빈 값(전체)을 제외하고 "," 로 구분하여 schEntNos 에 담는다.
$P.ctrl.query.schEntNos = arrEntNo.filter((element) => element !== "").join(',');
}

Loading…
Cancel
Save