2024-02-23 16:33 성인 알림 수정

This commit is contained in:
myname 2024-02-23 16:34:00 +09:00
parent c3a33064e4
commit 73518bd831
2 changed files with 5 additions and 4 deletions

View File

@ -189,9 +189,8 @@ public class EduAplctAdultServiceImpl implements EduAplctAdultService {
//알림 대상자 선정에 필요한 파라미터 설정
notifyManageVO.setEduAplctOrd(vEEduAplctVO.getEduAplctOrd());
//new 알림-2024.02.02
//교육신청시 알림 제거 - 2024.02.23
//notifyManageService.insertNotifyNew(notifyManageVO, VeConstants.NOTI_STATUS_10); //교육신청 - 상태변경
//new 알림-2024.02.02
notifyManageService.insertNotifyNew(notifyManageVO, VeConstants.NOTI_STATUS_10); //교육신청 - 상태변경
}catch(Exception ex){
ex.printStackTrace();

View File

@ -274,7 +274,9 @@ public class EduAplctTngrServiceImpl implements EduAplctTngrService {
}
// 성인 교육 신청 성공시 노티 insert
notifyManageService.insertNotifyEduForAdmin(loginVO, eduAplctOrd, eduChasiOrdList, vEEduAplctVO.getLctrDivCd());
if ("20".equals(vEEduAplctVO.getLctrDivCd())) {
notifyManageService.insertNotifyEduForAdmin(loginVO, eduAplctOrd, eduChasiOrdList, vEEduAplctVO.getLctrDivCd());
}
return true;
}