2023-11-30 12:11 감리 내용 수정

This commit is contained in:
myname 2023-11-30 12:12:07 +09:00
parent 572efdd16a
commit 5f885a8be0
5 changed files with 1326 additions and 1315 deletions

View File

@ -31,7 +31,6 @@ import kcc.com.utl.user.service.QustnrCommonUtil;
import kcc.let.uat.uia.service.SsoLoginVO; import kcc.let.uat.uia.service.SsoLoginVO;
import kcc.let.uss.olp.qri.service.EgovQustnrRespondInfoService; import kcc.let.uss.olp.qri.service.EgovQustnrRespondInfoService;
import kcc.let.uss.olp.qri.service.QustnrRespondInfoVO; import kcc.let.uss.olp.qri.service.QustnrRespondInfoVO;
import kcc.let.uss.olp.qrm.service.QustnrRespondManageVO;
import kcc.let.utl.fcc.service.EgovCryptoUtil; import kcc.let.utl.fcc.service.EgovCryptoUtil;
import kcc.ve.adv.tngr.stngInfo.service.VEACmpltCrtfcMixService; import kcc.ve.adv.tngr.stngInfo.service.VEACmpltCrtfcMixService;
import kcc.ve.aplct.adultVisitEdu.eduAplct.service.EduAplctAdultService; import kcc.ve.aplct.adultVisitEdu.eduAplct.service.EduAplctAdultService;
@ -48,7 +47,6 @@ import kcc.ve.instr.tngrVisitEdu.prcsInfo.service.VEPrcsMIXService;
import kcc.ve.instr.tngrVisitEdu.prcsInfo.service.VEPrcsOnlnCntntService; import kcc.ve.instr.tngrVisitEdu.prcsInfo.service.VEPrcsOnlnCntntService;
import kcc.ve.instr.tngrVisitEdu.prcsInfo.service.VEPrcsService; import kcc.ve.instr.tngrVisitEdu.prcsInfo.service.VEPrcsService;
import kcc.ve.oprtn.cndtnSspnIdtmt.trgtMng.service.CndtnTrgtMngService; import kcc.ve.oprtn.cndtnSspnIdtmt.trgtMng.service.CndtnTrgtMngService;
import kcc.ve.oprtn.cndtnSspnIdtmt.trgtMng.service.CndtnTrgtMngVO;
import kcc.ve.oprtn.qestnr.service.VEALettnQestnrMIXService; import kcc.ve.oprtn.qestnr.service.VEALettnQestnrMIXService;
/** /**
@ -640,6 +638,7 @@ public class FndtnEnhanceTrnController {
List<VEPrcsDetailVO> vEPrcsDetailVOList = vEPrcsAplctPrdService.selectPagingList4Fndth(vEPrcsDetailVO); List<VEPrcsDetailVO> vEPrcsDetailVOList = vEPrcsAplctPrdService.selectPagingList4Fndth(vEPrcsDetailVO);
modelAndView.addObject("data", vEPrcsDetailVOList); modelAndView.addObject("data", vEPrcsDetailVOList);
modelAndView.addObject("dataSize", vEPrcsDetailVOList.size());
modelAndView.addObject("result", "success"); modelAndView.addObject("result", "success");
return modelAndView; return modelAndView;

View File

@ -663,6 +663,15 @@
where where
a.lctr_div_cd = #lctrDivCd# a.lctr_div_cd = #lctrDivCd#
and a.user_id = #userId# and a.user_id = #userId#
<isNotEmpty property="searchStartDt">
AND vpap.edu_strt_pnttm <![CDATA[ >= ]]> #searchStartDt#
</isNotEmpty>
<isNotEmpty property="searchEndDt">
AND vpap.edu_strt_pnttm <![CDATA[ <= ]]> #searchEndDt#
</isNotEmpty>
ORDER BY vpap.edu_strt_pnttm ORDER BY vpap.edu_strt_pnttm
OFFSET #firstIndex# ROWS FETCH NEXT #recordCountPerPage# ROWS ONLY OFFSET #firstIndex# ROWS FETCH NEXT #recordCountPerPage# ROWS ONLY

View File

@ -561,7 +561,7 @@ $(document).ready(function(){
</tr> </tr>
</c:forEach> </c:forEach>
<c:if test="${empty list}"> <c:if test="${empty list}">
<tr><td colspan="5"><spring:message code="common.nodata.msg" /></td></tr> <tr><td colspan="4"><spring:message code="common.nodata.msg" /></td></tr>
</c:if> </c:if>
</tbody> </tbody>
</table> </table>