과거일자 기준일 제거
This commit is contained in:
parent
3e2efc67eb
commit
ffaefce13d
@ -7,8 +7,6 @@ import lombok.Setter;
|
|||||||
@Getter
|
@Getter
|
||||||
@Setter
|
@Setter
|
||||||
public class NtrCtsCmpRequest {
|
public class NtrCtsCmpRequest {
|
||||||
@Schema(description = "과거일자 기준일")
|
|
||||||
private String sch_baseDt;
|
|
||||||
@Schema(description = "기간 구분 ( 자연재해보상통지일, 보증서발급일, 설치일 )")
|
@Schema(description = "기간 구분 ( 자연재해보상통지일, 보증서발급일, 설치일 )")
|
||||||
private String sch_dtType;
|
private String sch_dtType;
|
||||||
@Schema(description = "시작일")
|
@Schema(description = "시작일")
|
||||||
|
|||||||
@ -11,8 +11,6 @@ import lombok.Setter;
|
|||||||
public class QuotRequest {
|
public class QuotRequest {
|
||||||
@Schema(description = "Language Code")
|
@Schema(description = "Language Code")
|
||||||
private String langCd;
|
private String langCd;
|
||||||
@Schema(description = "과거일자 기준일")
|
|
||||||
private String sch_baseDt;
|
|
||||||
@Schema(description = "시작일")
|
@Schema(description = "시작일")
|
||||||
private String sch_startDt;
|
private String sch_startDt;
|
||||||
@Schema(description = "종료일")
|
@Schema(description = "종료일")
|
||||||
|
|||||||
@ -7,8 +7,6 @@ import lombok.Setter;
|
|||||||
@Getter
|
@Getter
|
||||||
@Setter
|
@Setter
|
||||||
public class WrntIsncCmplRequest {
|
public class WrntIsncCmplRequest {
|
||||||
@Schema(description = "과거일자 기준일")
|
|
||||||
private String sch_baseDt;
|
|
||||||
@Schema(description = "기간 구분 ( 보증서발급일, 보증서신청일 )")
|
@Schema(description = "기간 구분 ( 보증서발급일, 보증서신청일 )")
|
||||||
private String sch_dtType;
|
private String sch_dtType;
|
||||||
@Schema(description = "시작일")
|
@Schema(description = "시작일")
|
||||||
|
|||||||
@ -177,7 +177,6 @@
|
|||||||
ON G.FIRST_AGENT_ID = Y.SALE_STORE_ID /*1차점정보*/
|
ON G.FIRST_AGENT_ID = Y.SALE_STORE_ID /*1차점정보*/
|
||||||
WHERE A.DEL_FLG = 0
|
WHERE A.DEL_FLG = 0
|
||||||
AND B.DEL_FLG = 0
|
AND B.DEL_FLG = 0
|
||||||
AND B.ESTIMATE_DETAIL_CREATE_DATE <![CDATA[ <= ]]> #{sch_baseDt} + ' 23:59:59' /* 과거일자 기준일 */
|
|
||||||
<if test="sch_startDt != null and sch_startDt != '' and sch_endDt != null and sch_endDt != ''"> <!-- 견적일 -->
|
<if test="sch_startDt != null and sch_startDt != '' and sch_endDt != null and sch_endDt != ''"> <!-- 견적일 -->
|
||||||
AND B.ESTIMATE_DETAIL_CREATE_DATE <![CDATA[>=]]> #{sch_startDt} + ' 00:00:00'
|
AND B.ESTIMATE_DETAIL_CREATE_DATE <![CDATA[>=]]> #{sch_startDt} + ' 00:00:00'
|
||||||
AND B.ESTIMATE_DETAIL_CREATE_DATE <![CDATA[<=]]> #{sch_endDt} + ' 23:59:59'
|
AND B.ESTIMATE_DETAIL_CREATE_DATE <![CDATA[<=]]> #{sch_endDt} + ' 23:59:59'
|
||||||
@ -255,7 +254,6 @@
|
|||||||
WHERE C.DEL_FLG = 0
|
WHERE C.DEL_FLG = 0
|
||||||
AND D.DEL_FLG = 0
|
AND D.DEL_FLG = 0
|
||||||
AND B.DEL_FLG = 0
|
AND B.DEL_FLG = 0
|
||||||
AND C.ESTIMATE_DETAIL_CREATE_DATE <![CDATA[ <= ]]> #{sch_baseDt} + ' 23:59:59' /* 과거일자 기준일 */
|
|
||||||
<if test="sch_startDt != null and sch_startDt != '' and sch_endDt != null and sch_endDt != ''"> <!-- 견적일 -->
|
<if test="sch_startDt != null and sch_startDt != '' and sch_endDt != null and sch_endDt != ''"> <!-- 견적일 -->
|
||||||
AND C.ESTIMATE_DETAIL_CREATE_DATE <![CDATA[>=]]> #{sch_startDt} + ' 00:00:00'
|
AND C.ESTIMATE_DETAIL_CREATE_DATE <![CDATA[>=]]> #{sch_startDt} + ' 00:00:00'
|
||||||
AND C.ESTIMATE_DETAIL_CREATE_DATE <![CDATA[<=]]> #{sch_endDt} + ' 23:59:59'
|
AND C.ESTIMATE_DETAIL_CREATE_DATE <![CDATA[<=]]> #{sch_endDt} + ' 23:59:59'
|
||||||
@ -350,7 +348,6 @@
|
|||||||
LEFT OUTER JOIN T_OBJECT D
|
LEFT OUTER JOIN T_OBJECT D
|
||||||
ON A.OBJECT_NO = D.OBJECT_NO
|
ON A.OBJECT_NO = D.OBJECT_NO
|
||||||
WHERE D.DEL_FLG != 1
|
WHERE D.DEL_FLG != 1
|
||||||
AND D.ESTIMATE_DETAIL_CREATE_DATE <![CDATA[ <= ]]> #{sch_baseDt} + ' 23:59:59' /* 과거일자 기준일 */
|
|
||||||
<if test="sch_dtType != null and sch_dtType != ''">
|
<if test="sch_dtType != null and sch_dtType != ''">
|
||||||
<if test="sch_startDt != null and sch_startDt != '' and sch_endDt != null and sch_endDt != ''">
|
<if test="sch_startDt != null and sch_startDt != '' and sch_endDt != null and sch_endDt != ''">
|
||||||
<choose>
|
<choose>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user