|
|
@ -391,6 +391,20 @@
|
|
|
|
$P.ctrl.query.fetchSize = DEFAULT_FETCH_SIZE; // 한번에 조회되는 자료 건수
|
|
|
|
$P.ctrl.query.fetchSize = DEFAULT_FETCH_SIZE; // 한번에 조회되는 자료 건수
|
|
|
|
$P.ctrl.query.delYn = "N"; // 삭제 여부
|
|
|
|
$P.ctrl.query.delYn = "N"; // 삭제 여부
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 날짜 차이 계산
|
|
|
|
|
|
|
|
let ymdFrom = new Date($P.$findn("schCrdnYmdFrom").val());
|
|
|
|
|
|
|
|
let ymdTo = new Date($P.$findn("schCrdnYmdTo").val());
|
|
|
|
|
|
|
|
let diffDays = (ymdTo.getTime() - ymdFrom.getTime()) / (1000 * 60 * 60 * 24);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// if (diffDays > 30) {
|
|
|
|
|
|
|
|
// dialog.alert({
|
|
|
|
|
|
|
|
// content: "단속일자 기간을 최대 30일 이내로 지정하시기 바랍니다."
|
|
|
|
|
|
|
|
// , init: () => { AppSupport.setDialogZindex(); }
|
|
|
|
|
|
|
|
// , onOK: () => { }
|
|
|
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
// return;
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
if (tabName == "계약서등록") {
|
|
|
|
if (tabName == "계약서등록") {
|
|
|
|
$P.ctrl.query.chgDmndYn = "N"; // 변경 요청 여부 N
|
|
|
|
$P.ctrl.query.chgDmndYn = "N"; // 변경 요청 여부 N
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -404,12 +418,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
if (arrEntRegNo.length == 1) {
|
|
|
|
if (arrEntRegNo.length == 1) {
|
|
|
|
dialog.alert({
|
|
|
|
dialog.alert({
|
|
|
|
content: "등록되어 있는 임대기업 정보가 없습니다."
|
|
|
|
content: "등록되어 있는 임대기업 정보가 없습니다."
|
|
|
|
+ "<br>" + "'임대기업관리' 메뉴에서 임대기업 정보를 먼저 등록하시기 바랍니다."
|
|
|
|
+ "<br>" + "'임대기업관리' 메뉴에서 임대기업 정보를 먼저 등록하시기 바랍니다."
|
|
|
|
, init: () => { AppSupport.setDialogZindex(); }
|
|
|
|
, init: () => { AppSupport.setDialogZindex(); }
|
|
|
|
, onOK: () => { }
|
|
|
|
, onOK: () => { }
|
|
|
|
});
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 빈 값(전체)을 제외하고 "," 로 구분하여 entIds 에 담는다.
|
|
|
|
// 빈 값(전체)을 제외하고 "," 로 구분하여 entIds 에 담는다.
|
|
|
|