이지우 - 관리자 > 강사들록관리 > 요청일 관련 등록일로 변경
This commit is contained in:
parent
d69ae82865
commit
9e35e65bb0
@ -248,13 +248,13 @@ public class OprtnInstrAdultPrflContoller {
|
||||
comDefaultVO = egovCryptoUtil.decryptComDefaultVO(comDefaultVO);
|
||||
vEInstrDetailVO.setSearchKeyword(comDefaultVO.getSearchKeyword());
|
||||
}
|
||||
//3.4 요청일 시작일 검색 시
|
||||
//3.4 등록일 시작일 검색 시
|
||||
if(StringUtil.isNotEmpty(vEInstrDetailVO.getSearchStartDt())){
|
||||
selectCondition += "AND TO_CHAR(a.sbmt_pnttm, 'YYYYMMDD') >= REPLACE('"+vEInstrDetailVO.getSearchStartDt()+"', '.', '')";
|
||||
selectCondition += "AND TO_CHAR(a.frst_regist_pnttm, 'YYYYMMDD') >= REPLACE('"+vEInstrDetailVO.getSearchStartDt()+"', '.', '')";
|
||||
}
|
||||
//3.5 요청일 종료일 검색 시
|
||||
//3.5 등록일 종료일 검색 시
|
||||
if(StringUtil.isNotEmpty(vEInstrDetailVO.getSearchEndDt())){
|
||||
selectCondition += "AND TO_CHAR(a.sbmt_pnttm, 'YYYYMMDD') <= REPLACE('"+vEInstrDetailVO.getSearchEndDt()+"', '.', '')";
|
||||
selectCondition += "AND TO_CHAR(a.frst_regist_pnttm, 'YYYYMMDD') <= REPLACE('"+vEInstrDetailVO.getSearchEndDt()+"', '.', '')";
|
||||
}
|
||||
|
||||
vEInstrDetailVO.setSelectPagingListQuery(selectCondition);
|
||||
@ -1978,7 +1978,7 @@ public class OprtnInstrAdultPrflContoller {
|
||||
p_vEInstrDetailVO.setRecordCountPerPage(p_paginationInfo.getRecordCountPerPage());
|
||||
|
||||
if("".equals(p_vEInstrDetailVO.getSearchSortCnd())){ //최초조회시 최신것 조회List
|
||||
p_vEInstrDetailVO.setSearchSortCnd("sbmt_pnttm");
|
||||
p_vEInstrDetailVO.setSearchSortCnd("frst_regist_pnttm");
|
||||
p_vEInstrDetailVO.setSearchSortOrd("desc");
|
||||
}
|
||||
|
||||
|
||||
@ -247,13 +247,13 @@ public class CmdTrgtInstrContoller {
|
||||
comDefaultVO = egovCryptoUtil.decryptComDefaultVO(comDefaultVO);
|
||||
vEInstrDetailVO.setSearchKeyword(comDefaultVO.getSearchKeyword());
|
||||
}
|
||||
//3.4 요청일 시작일 검색 시
|
||||
//3.4 등록일 시작일 검색 시
|
||||
if(StringUtil.isNotEmpty(vEInstrDetailVO.getSearchStartDt())){
|
||||
selectCondition += "AND TO_CHAR(a.sbmt_pnttm, 'YYYYMMDD') >= REPLACE('"+vEInstrDetailVO.getSearchStartDt()+"', '.', '')";
|
||||
selectCondition += "AND TO_CHAR(a.frst_regist_pnttm, 'YYYYMMDD') >= REPLACE('"+vEInstrDetailVO.getSearchStartDt()+"', '.', '')";
|
||||
}
|
||||
//3.5 요청일 종료일 검색 시
|
||||
//3.5 등록일 종료일 검색 시
|
||||
if(StringUtil.isNotEmpty(vEInstrDetailVO.getSearchEndDt())){
|
||||
selectCondition += "AND TO_CHAR(a.sbmt_pnttm, 'YYYYMMDD') <= REPLACE('"+vEInstrDetailVO.getSearchEndDt()+"', '.', '')";
|
||||
selectCondition += "AND TO_CHAR(a.frst_regist_pnttm, 'YYYYMMDD') <= REPLACE('"+vEInstrDetailVO.getSearchEndDt()+"', '.', '')";
|
||||
}
|
||||
|
||||
vEInstrDetailVO.setSelectPagingListQuery(selectCondition);
|
||||
@ -1977,7 +1977,7 @@ public class CmdTrgtInstrContoller {
|
||||
p_vEInstrDetailVO.setRecordCountPerPage(p_paginationInfo.getRecordCountPerPage());
|
||||
|
||||
if("".equals(p_vEInstrDetailVO.getSearchSortCnd())){ //최초조회시 최신것 조회List
|
||||
p_vEInstrDetailVO.setSearchSortCnd("sbmt_pnttm");
|
||||
p_vEInstrDetailVO.setSearchSortCnd("frst_regist_pnttm");
|
||||
p_vEInstrDetailVO.setSearchSortOrd("desc");
|
||||
}
|
||||
|
||||
|
||||
@ -247,13 +247,13 @@ public class PreventInstrContoller {
|
||||
comDefaultVO = egovCryptoUtil.decryptComDefaultVO(comDefaultVO);
|
||||
vEInstrDetailVO.setSearchKeyword(comDefaultVO.getSearchKeyword());
|
||||
}
|
||||
//3.4 요청일 시작일 검색 시
|
||||
//3.4 등록일 시작일 검색 시
|
||||
if(StringUtil.isNotEmpty(vEInstrDetailVO.getSearchStartDt())){
|
||||
selectCondition += "AND TO_CHAR(a.sbmt_pnttm, 'YYYYMMDD') >= REPLACE('"+vEInstrDetailVO.getSearchStartDt()+"', '.', '')";
|
||||
selectCondition += "AND TO_CHAR(a.frst_regist_pnttm, 'YYYYMMDD') >= REPLACE('"+vEInstrDetailVO.getSearchStartDt()+"', '.', '')";
|
||||
}
|
||||
//3.5 요청일 종료일 검색 시
|
||||
//3.5 등록일 종료일 검색 시
|
||||
if(StringUtil.isNotEmpty(vEInstrDetailVO.getSearchEndDt())){
|
||||
selectCondition += "AND TO_CHAR(a.sbmt_pnttm, 'YYYYMMDD') <= REPLACE('"+vEInstrDetailVO.getSearchEndDt()+"', '.', '')";
|
||||
selectCondition += "AND TO_CHAR(a.frst_regist_pnttm, 'YYYYMMDD') <= REPLACE('"+vEInstrDetailVO.getSearchEndDt()+"', '.', '')";
|
||||
}
|
||||
|
||||
vEInstrDetailVO.setSelectPagingListQuery(selectCondition);
|
||||
@ -1977,7 +1977,7 @@ public class PreventInstrContoller {
|
||||
p_vEInstrDetailVO.setRecordCountPerPage(p_paginationInfo.getRecordCountPerPage());
|
||||
|
||||
if("".equals(p_vEInstrDetailVO.getSearchSortCnd())){ //최초조회시 최신것 조회List
|
||||
p_vEInstrDetailVO.setSearchSortCnd("sbmt_pnttm");
|
||||
p_vEInstrDetailVO.setSearchSortCnd("frst_regist_pnttm");
|
||||
p_vEInstrDetailVO.setSearchSortOrd("desc");
|
||||
}
|
||||
|
||||
|
||||
@ -129,7 +129,7 @@
|
||||
</div>
|
||||
<div class="list_top_2">
|
||||
<div class="util_left">
|
||||
<p>요청일자</p>
|
||||
<p>등록일자</p>
|
||||
</div>
|
||||
<div class="util_right">
|
||||
<div class="calendar_wrap">
|
||||
@ -196,7 +196,7 @@
|
||||
<th>직위</th>
|
||||
<th>위촉년도</th>
|
||||
<th>구분</th>
|
||||
<th>요청일</th>
|
||||
<th>등록일</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -218,13 +218,12 @@
|
||||
<ve:code codeId="VE0018" code="${list.divCd}"/>
|
||||
</td>
|
||||
<td>
|
||||
<fmt:parseDate value="${list.sbmtPnttm}" var="sbmtPnttm" pattern="yyyy-MM-dd"/>
|
||||
<fmt:formatDate value="${sbmtPnttm}" pattern="yyyy.MM.dd"/>
|
||||
<c:out value="${list.frstRegistPnttm}"/>
|
||||
</td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
<c:if test="${empty resultList}">
|
||||
<tr><td colspan="7"><spring:message code="common.nodata.msg" /></td></tr>
|
||||
<tr><td colspan="6"><spring:message code="common.nodata.msg" /></td></tr>
|
||||
</c:if>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@ -452,18 +452,6 @@ function getYears(getYear){
|
||||
</th>
|
||||
<td colspan="3" style="position: relative;">
|
||||
<c:out value='${info.instrNm}' />
|
||||
<div class="put_photo">
|
||||
<div class="put_photo_in">
|
||||
<div class="put_photo_box">
|
||||
<c:if test="${empty info.phtAtchFileId}">
|
||||
<img src="${pageContext.request.contextPath}/visitEdu/usr/publish/images/content/img_add.png" alt="이미지를 넣어주세요">
|
||||
</c:if>
|
||||
<c:if test="${not empty info.phtAtchFileId}">
|
||||
<img id="instrPhoto" class="id_pic" alt="${info.instrNm} 사진" src='<c:url value='/uss/ion/pwm/getImage.do'/>?atchFileId=<c:out value="${info.phtAtchFileId}"/>' />
|
||||
</c:if>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -631,14 +619,6 @@ function getYears(getYear){
|
||||
</th>
|
||||
<td colspan="3" style="position: relative;">
|
||||
<input type="text" name="instrNm" value="<c:out value='${info.instrNm}' />"/>
|
||||
<div class="put_photo">
|
||||
<div class="put_photo_in">
|
||||
<div class="put_photo_box">
|
||||
<img src="${pageContext.request.contextPath}/visitEdu/usr/publish/images/content/img_add.png" alt="이미지를 넣어주세요">
|
||||
</div>
|
||||
<!-- <button type="button" class="btnType01" onclick="fncPhotoPopup(); return false;">사진등록</button> -->
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
@ -129,7 +129,7 @@
|
||||
</div>
|
||||
<div class="list_top_2">
|
||||
<div class="util_left">
|
||||
<p>요청일자</p>
|
||||
<p>등록일자</p>
|
||||
</div>
|
||||
<div class="util_right">
|
||||
<div class="calendar_wrap">
|
||||
@ -196,7 +196,7 @@
|
||||
<th>직위</th>
|
||||
<th>위촉년도</th>
|
||||
<th>구분</th>
|
||||
<th>요청일</th>
|
||||
<th>등록일</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -218,13 +218,12 @@
|
||||
<ve:code codeId="VE0018" code="${list.divCd}"/>
|
||||
</td>
|
||||
<td>
|
||||
<fmt:parseDate value="${list.sbmtPnttm}" var="sbmtPnttm" pattern="yyyy-MM-dd"/>
|
||||
<fmt:formatDate value="${sbmtPnttm}" pattern="yyyy.MM.dd"/>
|
||||
<c:out value="${list.frstRegistPnttm}"/>
|
||||
</td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
<c:if test="${empty resultList}">
|
||||
<tr><td colspan="7"><spring:message code="common.nodata.msg" /></td></tr>
|
||||
<tr><td colspan="6"><spring:message code="common.nodata.msg" /></td></tr>
|
||||
</c:if>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@ -452,18 +452,6 @@ function getYears(getYear){
|
||||
</th>
|
||||
<td colspan="3" style="position: relative;">
|
||||
<c:out value='${info.instrNm}' />
|
||||
<div class="put_photo">
|
||||
<div class="put_photo_in">
|
||||
<div class="put_photo_box">
|
||||
<c:if test="${empty info.phtAtchFileId}">
|
||||
<img src="${pageContext.request.contextPath}/visitEdu/usr/publish/images/content/img_add.png" alt="이미지를 넣어주세요">
|
||||
</c:if>
|
||||
<c:if test="${not empty info.phtAtchFileId}">
|
||||
<img id="instrPhoto" class="id_pic" alt="${info.instrNm} 사진" src='<c:url value='/uss/ion/pwm/getImage.do'/>?atchFileId=<c:out value="${info.phtAtchFileId}"/>' />
|
||||
</c:if>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -631,14 +619,6 @@ function getYears(getYear){
|
||||
</th>
|
||||
<td colspan="3" style="position: relative;">
|
||||
<input type="text" name="instrNm" value="<c:out value='${info.instrNm}' />"/>
|
||||
<div class="put_photo">
|
||||
<div class="put_photo_in">
|
||||
<div class="put_photo_box">
|
||||
<img src="${pageContext.request.contextPath}/visitEdu/usr/publish/images/content/img_add.png" alt="이미지를 넣어주세요">
|
||||
</div>
|
||||
<!-- <button type="button" class="btnType01" onclick="fncPhotoPopup(); return false;">사진등록</button> -->
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
@ -129,7 +129,7 @@
|
||||
</div>
|
||||
<div class="list_top_2">
|
||||
<div class="util_left">
|
||||
<p>요청일자</p>
|
||||
<p>등록일자</p>
|
||||
</div>
|
||||
<div class="util_right">
|
||||
<div class="calendar_wrap">
|
||||
@ -196,7 +196,7 @@
|
||||
<th>직위</th>
|
||||
<th>위촉년도</th>
|
||||
<th>구분</th>
|
||||
<th>요청일</th>
|
||||
<th>등록일</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -218,13 +218,12 @@
|
||||
<ve:code codeId="VE0018" code="${list.divCd}"/>
|
||||
</td>
|
||||
<td>
|
||||
<fmt:parseDate value="${list.sbmtPnttm}" var="sbmtPnttm" pattern="yyyy-MM-dd"/>
|
||||
<fmt:formatDate value="${sbmtPnttm}" pattern="yyyy.MM.dd"/>
|
||||
<c:out value="${list.frstRegistPnttm}"/>
|
||||
</td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
<c:if test="${empty resultList}">
|
||||
<tr><td colspan="7"><spring:message code="common.nodata.msg" /></td></tr>
|
||||
<tr><td colspan="6"><spring:message code="common.nodata.msg" /></td></tr>
|
||||
</c:if>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@ -452,18 +452,6 @@ function getYears(getYear){
|
||||
</th>
|
||||
<td colspan="3" style="position: relative;">
|
||||
<c:out value='${info.instrNm}' />
|
||||
<div class="put_photo">
|
||||
<div class="put_photo_in">
|
||||
<div class="put_photo_box">
|
||||
<c:if test="${empty info.phtAtchFileId}">
|
||||
<img src="${pageContext.request.contextPath}/visitEdu/usr/publish/images/content/img_add.png" alt="이미지를 넣어주세요">
|
||||
</c:if>
|
||||
<c:if test="${not empty info.phtAtchFileId}">
|
||||
<img id="instrPhoto" class="id_pic" alt="${info.instrNm} 사진" src='<c:url value='/uss/ion/pwm/getImage.do'/>?atchFileId=<c:out value="${info.phtAtchFileId}"/>' />
|
||||
</c:if>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -631,14 +619,6 @@ function getYears(getYear){
|
||||
</th>
|
||||
<td colspan="3" style="position: relative;">
|
||||
<input type="text" name="instrNm" value="<c:out value='${info.instrNm}' />"/>
|
||||
<div class="put_photo">
|
||||
<div class="put_photo_in">
|
||||
<div class="put_photo_box">
|
||||
<img src="${pageContext.request.contextPath}/visitEdu/usr/publish/images/content/img_add.png" alt="이미지를 넣어주세요">
|
||||
</div>
|
||||
<!-- <button type="button" class="btnType01" onclick="fncPhotoPopup(); return false;">사진등록</button> -->
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user