Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
@a68d95716293ffd7ae73a3c5332f5748e69be2ce
--- 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 @@ |
| 841 | 841 |
&& result.getDiffMin() < -5 // 예약 시간이 5분 이상인 것들만 |
| 842 | 842 |
) {
|
| 843 | 843 |
returnCode = "03"; // 예약대기 코드 ( 예약취소 버튼 노출 ) |
| 844 |
- } else if (result.getMsgGroupCnt().equals(result.getResultSValue()) |
|
| 845 |
- || result.getMsgGroupCnt().equals(result.getResultFValue())) {
|
|
| 844 |
+ } else if (Integer.parseInt(result.getMsgGroupCnt()) == Integer.parseInt(result.getResultSValue()) + Integer.parseInt(result.getResultFValue()) |
|
| 845 |
+ ) {
|
|
| 846 | 846 |
returnCode = "02"; // 완료 코드 |
| 847 | 847 |
} else {
|
| 848 | 848 |
returnCode = "01"; // 진행중 코드 |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?