From 73518bd831350cbbad9e03b2720f4b37d886837f Mon Sep 17 00:00:00 2001 From: myname Date: Fri, 23 Feb 2024 16:34:00 +0900 Subject: [PATCH] =?UTF-8?q?2024-02-23=2016:33=20=EC=84=B1=EC=9D=B8=20?= =?UTF-8?q?=EC=95=8C=EB=A6=BC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../eduAplct/service/impl/EduAplctAdultServiceImpl.java | 5 ++--- .../eduAplct/service/impl/EduAplctTngrServiceImpl.java | 4 +++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/main/java/kcc/ve/aplct/adultVisitEdu/eduAplct/service/impl/EduAplctAdultServiceImpl.java b/src/main/java/kcc/ve/aplct/adultVisitEdu/eduAplct/service/impl/EduAplctAdultServiceImpl.java index ed72e054..26300e79 100644 --- a/src/main/java/kcc/ve/aplct/adultVisitEdu/eduAplct/service/impl/EduAplctAdultServiceImpl.java +++ b/src/main/java/kcc/ve/aplct/adultVisitEdu/eduAplct/service/impl/EduAplctAdultServiceImpl.java @@ -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(); diff --git a/src/main/java/kcc/ve/aplct/tngrVisitEdu/eduAplct/service/impl/EduAplctTngrServiceImpl.java b/src/main/java/kcc/ve/aplct/tngrVisitEdu/eduAplct/service/impl/EduAplctTngrServiceImpl.java index 689d2c3c..5e47b450 100644 --- a/src/main/java/kcc/ve/aplct/tngrVisitEdu/eduAplct/service/impl/EduAplctTngrServiceImpl.java +++ b/src/main/java/kcc/ve/aplct/tngrVisitEdu/eduAplct/service/impl/EduAplctTngrServiceImpl.java @@ -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; }