JIWOO 2025-06-27
이지우 - 문자 발송 완료 상태 조건 변경(총 건수==성공or실패 건수 -> 총 건수==성공+실패 건수)
@6bc68150e31e4e1818bd411de87c5fe844c6cf0c
src/main/java/itn/let/mjo/msgsent/service/impl/MjonMsgSentServiceImpl.java
--- src/main/java/itn/let/mjo/msgsent/service/impl/MjonMsgSentServiceImpl.java
+++ src/main/java/itn/let/mjo/msgsent/service/impl/MjonMsgSentServiceImpl.java
@@ -841,8 +841,8 @@
 					&& result.getDiffMin() < -5 // 예약 시간이 5분 이상인 것들만
 					) {
 			returnCode = "03"; // 예약대기 코드 ( 예약취소 버튼 노출 )
-		} else if (result.getMsgGroupCnt().equals(result.getResultSValue()) 
-					|| result.getMsgGroupCnt().equals(result.getResultFValue())) {
+		} else if (Integer.parseInt(result.getMsgGroupCnt()) == Integer.parseInt(result.getResultSValue()) + Integer.parseInt(result.getResultFValue())
+				) {
 			returnCode = "02"; // 완료 코드
 		} else {
 			returnCode = "01"; // 진행중 코드
Add a comment
List