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 prcsNm; //과정명
|
||||||
private String prcsOrd; //과정순번
|
private String prcsOrd; //과정순번
|
||||||
|
|
||||||
|
private String aprvlCdType; //승인코드타입
|
||||||
|
|
||||||
|
|
||||||
public String getCmmNotifyOrd() {
|
public String getCmmNotifyOrd() {
|
||||||
return cmmNotifyOrd;
|
return cmmNotifyOrd;
|
||||||
@ -210,6 +212,12 @@ public class NotifyManageVO extends ComDefaultVO implements Serializable {
|
|||||||
public void setPrcsOrd(String prcsOrd) {
|
public void setPrcsOrd(String prcsOrd) {
|
||||||
this.prcsOrd = 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-교육확정
|
"153".equals(p_noti_status) //153-교육확정
|
||||||
) {
|
) {
|
||||||
// 신청자 ID 가져오기
|
// 신청자 ID 가져오기
|
||||||
|
p_notifyManageVO.setAprvlCdType("153");
|
||||||
notifyManageListVO = notifyManageDAO.selectAplctList(p_notifyManageVO); //prcsAplctPrdOrd
|
notifyManageListVO = notifyManageDAO.selectAplctList(p_notifyManageVO); //prcsAplctPrdOrd
|
||||||
|
|
||||||
} else if (
|
} else if (
|
||||||
|
|||||||
@ -75,6 +75,11 @@
|
|||||||
SELECT user_id AS mngUserId
|
SELECT user_id AS mngUserId
|
||||||
FROM ve_edu_aplct
|
FROM ve_edu_aplct
|
||||||
WHERE prcs_ord=#prcsAplctPrdOrd#
|
WHERE prcs_ord=#prcsAplctPrdOrd#
|
||||||
|
|
||||||
|
<isEqual prepend="AND" property="aprvlCdType" compareValue="153">
|
||||||
|
aprvl_cd='60'
|
||||||
|
</isEqual>
|
||||||
|
|
||||||
|
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|||||||
@ -104,6 +104,13 @@
|
|||||||
</form:form>
|
</form:form>
|
||||||
|
|
||||||
<form:form id="listForm" name="listForm" method="post" onsubmit="return false;">
|
<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="pageIndex" value="<c:out value='${vEEduAplctVO.pageIndex}' default='1' />"/>
|
||||||
<input type="hidden" name="pageUnit" value="5" />
|
<input type="hidden" name="pageUnit" value="5" />
|
||||||
<input type="hidden" name="rsdne" value="" />
|
<input type="hidden" name="rsdne" value="" />
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user