임대차계약 등록 수정.

main
jjh 4 weeks ago
parent 68e4e3d143
commit 9fac580aaa

@ -391,6 +391,20 @@
$P.ctrl.query.fetchSize = DEFAULT_FETCH_SIZE; // 한번에 조회되는 자료 건수
$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 == "계약서등록") {
$P.ctrl.query.chgDmndYn = "N"; // 변경 요청 여부 N
}

Loading…
Cancel
Save