청약고객관리 날짜 조회 세팅 변경 및 사업자 번호 조회 추가

This commit is contained in:
kubo8
2023-01-19 09:56:03 +09:00
parent a05d9a8cb9
commit 4c3bab4ff7
3 changed files with 12 additions and 4 deletions

View File

@@ -357,8 +357,10 @@ export default {
} }
}, },
initSetStartDate() { initSetStartDate() {
let setYear = Number(moment(new Date()).format('YYYY')); //let setYear = Number(moment(new Date()).format('YYYY'));
let initStartDate = new Date(setYear, 0, 1); //let initStartDate = new Date(setYear, 0, 1);
let setYear = Number(moment("2022").format('YYYY'));
let initStartDate = new Date(setYear, 9, 1);
this.startDate = initStartDate; this.startDate = initStartDate;
}, },
}, },

View File

@@ -69,6 +69,7 @@
<option value="01">고객사명</option> <option value="01">고객사명</option>
<option value="02">가입번호</option> <option value="02">가입번호</option>
<option value="03">서비스ID</option> <option value="03">서비스ID</option>
<option value="04">사업자번호</option>
</select> </select>
</div> </div>
<div class="input_box"> <div class="input_box">
@@ -426,8 +427,10 @@ export default {
} }
}, },
initSetStartDate() { initSetStartDate() {
let setYear = Number(moment(new Date()).format('YYYY')); //let setYear = Number(moment(new Date()).format('YYYY'));
let initStartDate = new Date(setYear, 0, 1); //let initStartDate = new Date(setYear, 0, 1);
let setYear = Number(moment("2022").format('YYYY'));
let initStartDate = new Date(setYear, 9, 1);
this.startDate = initStartDate; this.startDate = initStartDate;
}, },
fromHtmlEntities(str) { fromHtmlEntities(str) {

View File

@@ -240,6 +240,9 @@
<if test="searchType3 == '03' and searchText1 != null and searchText1 != ''"> <if test="searchType3 == '03' and searchText1 != null and searchText1 != ''">
AND UPPER(esu.USER_ID) LIKE UPPER(CONCAT('%', #{searchText1}, '%')) AND UPPER(esu.USER_ID) LIKE UPPER(CONCAT('%', #{searchText1}, '%'))
</if> </if>
<if test="searchType3 == '04' and searchText1 != null and searchText1 != ''">
AND UPPER(eci.BIZRNO) LIKE UPPER(CONCAT('%', #{searchText1}, '%'))
</if>
</if> </if>
</sql> </sql>