2024-04-29 17:21 기소유예 수정 사항 개발
This commit is contained in:
parent
5ae2b26c8e
commit
cb32d9c0b8
@ -83,6 +83,8 @@ public class NotifyManageVO extends ComDefaultVO implements Serializable {
|
||||
private String prcsNm; //과정명
|
||||
private String prcsOrd; //과정순번
|
||||
|
||||
private String aprvlCdType; //승인코드타입
|
||||
|
||||
|
||||
public String getCmmNotifyOrd() {
|
||||
return cmmNotifyOrd;
|
||||
@ -210,6 +212,12 @@ public class NotifyManageVO extends ComDefaultVO implements Serializable {
|
||||
public void setPrcsOrd(String prcsOrd) {
|
||||
this.prcsOrd = prcsOrd;
|
||||
}
|
||||
public String getAprvlCdType() {
|
||||
return aprvlCdType;
|
||||
}
|
||||
public void setAprvlCdType(String aprvlCdType) {
|
||||
this.aprvlCdType = aprvlCdType;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@ -981,6 +981,7 @@ public class NotifyManageServiceImpl extends EgovAbstractServiceImpl implements
|
||||
"153".equals(p_noti_status) //153-교육확정
|
||||
) {
|
||||
// 신청자 ID 가져오기
|
||||
p_notifyManageVO.setAprvlCdType("153");
|
||||
notifyManageListVO = notifyManageDAO.selectAplctList(p_notifyManageVO); //prcsAplctPrdOrd
|
||||
|
||||
} else if (
|
||||
|
||||
@ -76,6 +76,11 @@
|
||||
FROM ve_edu_aplct
|
||||
WHERE prcs_ord=#prcsAplctPrdOrd#
|
||||
|
||||
<isEqual prepend="AND" property="aprvlCdType" compareValue="153">
|
||||
aprvl_cd='60'
|
||||
</isEqual>
|
||||
|
||||
|
||||
</select>
|
||||
|
||||
<select id="VEANotifyMngDAO.findByMngId" parameterClass="notifyManageVO" resultClass="notifyManageVO">
|
||||
|
||||
@ -104,6 +104,13 @@
|
||||
</form:form>
|
||||
|
||||
<form:form id="listForm" name="listForm" method="post" onsubmit="return false;">
|
||||
|
||||
<input type="hidden" name="eduAplctOrd" id="eduAplctOrd"/>
|
||||
<input type="hidden" name="eduChasiOrd" id="eduChasiOrd"/>
|
||||
<input type="hidden" name="userId" id="userId" />
|
||||
<input type="hidden" name="asgnmAprvlCd" id="asgnmAprvlCd" value="30"/> <!-- VE0019 배정 승인 코드 30 확정 -->
|
||||
<input type="hidden" name="prcsAplctPrdOrd" id="prcsAplctPrdOrd" value="<c:out value="${vEPrcsDetailVO.prcsAplctPrdOrd}" />" />
|
||||
|
||||
<input type="hidden" name="pageIndex" value="<c:out value='${vEEduAplctVO.pageIndex}' default='1' />"/>
|
||||
<input type="hidden" name="pageUnit" value="5" />
|
||||
<input type="hidden" name="rsdne" value="" />
|
||||
|
||||
Loading…
Reference in New Issue
Block a user