2024-03-21 09:58 체험교실 정렬 추가 및 처리상태값 추가

This commit is contained in:
myname 2024-03-21 10:00:25 +09:00
parent 46599dbb99
commit a9f970be21
2 changed files with 17 additions and 2 deletions

View File

@ -154,6 +154,18 @@ public class OprtnAplctMngController {
vEEduAplctVO.setSearchKeyword(egovCryptoUtil.encrypt(vEEduAplctVO.getSearchKeyword()));
}
model.addAttribute("cryptoUtil", egovCryptoUtil);
//정렬
if("".equals(vEEduAplctVO.getSearchSortCnd())){ //최초조회시 최신것 조회List
vEEduAplctVO.setOrderByQuery("A.SBMT_PNTTM DESC");
}else{
vEEduAplctVO.setOrderByQuery(vEEduAplctVO.getSearchSortCnd() + " " +vEEduAplctVO.getSearchSortOrd());
}
System.out.println("vEEduAplctVO.getOrderByQuery() :: "+ vEEduAplctVO.getOrderByQuery());
//1.pageing step1
PaginationInfo paginationInfo = this.setPagingStep1(vEEduAplctVO);

View File

@ -303,6 +303,8 @@ input:read-only {
<c:if test="${vEEduAplctVO.searchCpyAprvlCd eq '12'}">selected</c:if>>운영 미확정</option>
<option value="13"
<c:if test="${vEEduAplctVO.searchCpyAprvlCd eq '13'}">selected</c:if>>수정완료</option>
<option value="14"
<c:if test="${vEEduAplctVO.searchCpyAprvlCd eq '14'}">selected</c:if>>운영취소</option>
<option value="20"
<c:if test="${vEEduAplctVO.searchCpyAprvlCd eq '20'}">selected</c:if>>운영 확정</option>
<%-- <option value="30"
@ -377,9 +379,9 @@ input:read-only {
<th><input type="checkbox" name="checkAll" id="checkAll" onclick="fnCheckAll();" /><label for="checkAll"></label></th>
<th>번호</th>
<th>담당교과</th>
<th>학교명</th>
<th>학교명<button class="sort sortBtn" id="sort_scholInsttNm">▲</button></th>
<th>담당자</th>
<th>신청일자</th>
<th>신청일자<button class="sort sortBtn" id="sort_sbmtPnttm">▲</button></th>
<!-- <th>선정여부</th> -->
<th>처리상태</th>
<th>비고</th>
@ -456,6 +458,7 @@ input:read-only {
<option value="11">수정요청</option>
<option value="20">운영교사 선정</option>
<option value="12">운영교사 미선정</option>
<option value="14">운영취소</option>
<option value="40">서류제출 요청</option>
<option value="50">결과보고 요청</option>
<option value="80">운영종료</option>