1. 대시보드 수정.

2. 임대차계약관리 검색 조건 추가.
main
JoJH 12 months ago
parent 837d629e1e
commit 704723ffdc

@ -44,6 +44,8 @@ public class RentQuery extends CmmnQuery {
private String schHirerNm; // 임차인 명
private String schDmndDtFrom; // 요청 일자 시작
private String schDmndDtTo; // 요청 일자 종료
private String schRegDtFrom; // 등록 일자 시작
private String schRegDtTo; // 등록 일자 종료
private String[] omJnos; // 소유주 번호s
private String omJno; // 소유주 번호
@ -273,6 +275,22 @@ public class RentQuery extends CmmnQuery {
this.schDmndDtTo = schDmndDtTo;
}
public String getSchRegDtFrom() {
return ifEmpty(schRegDtFrom, () -> null);
}
public void setSchRegDtFrom(String schRegDtFrom) {
this.schRegDtFrom = schRegDtFrom;
}
public String getSchRegDtTo() {
return ifEmpty(schRegDtTo, () -> null);
}
public void setSchRegDtTo(String schRegDtTo) {
this.schRegDtTo = schRegDtTo;
}
public String[] getOmJnos() {
return ifEmpty(omJnos, () -> null);
}

@ -149,7 +149,7 @@ public class StatServiceBean extends AbstractServiceBean implements StatService
entRegNos[iLoop] = entRegNoList.get(iLoop).string("ENT_REG_NO");
}
}
// req.setSchEntRegNos(entRegNos);
req.setSchEntRegNos(entRegNos);
req.setOrderBy(null);
if(daySetting) {

@ -904,6 +904,12 @@
</if>
<if test="schDmndDtTo != null">
AND LM.DMND_DT <![CDATA[<=]]> CONCAT(#{schDmndDtTo}, '235959') <!-- 요청 일자 종료 -->
</if>
<if test="schRegDtFrom != null">
AND LM.REG_DT <![CDATA[>=]]> CONCAT(#{schRegDtFrom}, '000000') <!-- 등록 일자 시작 -->
</if>
<if test="schRegDtTo != null">
AND LM.REG_DT <![CDATA[<=]]> CONCAT(#{schRegDtTo}, '235959') <!-- 등록 일자 종료 -->
</if>
<if test="rtpyrNos != null">
AND LM.RTPYR_NO IN ( <!-- 납부자 번호s -->

Loading…
Cancel
Save