이지우 - 교육 신청 공통 조회 쿼리 검색조건 오류 수정
This commit is contained in:
parent
22eaf6c190
commit
c2edcd2023
@ -1516,11 +1516,11 @@
|
|||||||
</isNotEmpty>
|
</isNotEmpty>
|
||||||
|
|
||||||
<isNotEmpty property="searchStartDt">
|
<isNotEmpty property="searchStartDt">
|
||||||
AND CC.EDU_HOPE_DT <![CDATA[ >= ]]> REPLACE(#searchStartDt#, '.' , '')
|
AND REPLACE(CC.EDU_HOPE_DT, '.', '') <![CDATA[ >= ]]> REPLACE(#searchStartDt#, '.' , '')
|
||||||
</isNotEmpty>
|
</isNotEmpty>
|
||||||
|
|
||||||
<isNotEmpty property="searchEndDt">
|
<isNotEmpty property="searchEndDt">
|
||||||
AND CC.EDU_HOPE_DT <![CDATA[ <= ]]> REPLACE(#searchEndDt#, '.' , '')
|
AND REPLACE(CC.EDU_HOPE_DT, '.', '') <![CDATA[ <= ]]> REPLACE(#searchEndDt#, '.' , '')
|
||||||
</isNotEmpty>
|
</isNotEmpty>
|
||||||
<isNotEmpty property="searchStartSbmtPnttm">
|
<isNotEmpty property="searchStartSbmtPnttm">
|
||||||
AND TO_CHAR(A.SBMT_PNTTM,'YYYYMMDD') <![CDATA[ >= ]]> REPLACE(#searchStartSbmtPnttm#, '.' , '')
|
AND TO_CHAR(A.SBMT_PNTTM,'YYYYMMDD') <![CDATA[ >= ]]> REPLACE(#searchStartSbmtPnttm#, '.' , '')
|
||||||
@ -1624,7 +1624,7 @@
|
|||||||
</isNotEmpty>
|
</isNotEmpty>
|
||||||
|
|
||||||
<isNotEmpty property="searchChrgNm">
|
<isNotEmpty property="searchChrgNm">
|
||||||
AND A.CHRG_NM LIKE '%' || #searchChrgNm# , '%')
|
AND A.CHRG_NM LIKE '%' || #searchChrgNm# || '%'
|
||||||
</isNotEmpty>
|
</isNotEmpty>
|
||||||
|
|
||||||
<isNotEmpty property="searchStatusArr">
|
<isNotEmpty property="searchStatusArr">
|
||||||
|
|||||||
@ -13,8 +13,6 @@
|
|||||||
<link rel="stylesheet" href="<c:url value='/innorix/innorix.css'/>" type="text/css">
|
<link rel="stylesheet" href="<c:url value='/innorix/innorix.css'/>" type="text/css">
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
function fncInfoChk(){
|
function fncInfoChk(){
|
||||||
//# sourceURL=foo.coffee
|
|
||||||
|
|
||||||
if($("#instrNm").val() == ''){
|
if($("#instrNm").val() == ''){
|
||||||
alert('성명을 입력해주세요.');
|
alert('성명을 입력해주세요.');
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user