이지우 > VO내 대체문자 변수명 충돌로 인하여 변수명 변경. kakaoResend > resend
This commit is contained in:
parent
416a7b8273
commit
67202b2a9b
@ -317,15 +317,15 @@ public class MjonMsgVO extends ComDefaultVO{
|
||||
|
||||
|
||||
private int waitCount; //대기 건수
|
||||
private int successCount; // 문자발송 성공건수
|
||||
private int successCount; //문자발송 성공건수
|
||||
private int failCount; //실패 건수
|
||||
private int kakaoResendWaitCount; //대체문자 대기 건수
|
||||
private int kakaoResendSuccCount; //대체문자 성공 건수
|
||||
private int kakaoResendFailCount; //대체문자 실패 건수
|
||||
private int resendWaitCount; //대체문자 대기 건수
|
||||
private int resendSuccCount; //대체문자 성공 건수
|
||||
private int resendFailCount; //대체문자 실패 건수
|
||||
|
||||
private String[] msgTypeList; //발송 타입 리스트
|
||||
|
||||
private String selectType; //조회 타입 ex) complete : 전송완료
|
||||
private String selectType; //조회 타입 ex) reqDateLast3M : 발송일이 지난 3개월간
|
||||
private String yellowId; //채널아이디
|
||||
private String yellowIdYn; //채널아이디 여부
|
||||
}
|
||||
|
||||
@ -8708,9 +8708,9 @@
|
||||
, MMD.waitCount AS waitCount
|
||||
, MMD.successCount AS successCount
|
||||
, MMD.failCount AS failCount
|
||||
, MMD.kakaoResendWaitCount AS kakaoResendWaitCount
|
||||
, MMD.kakaoResendSuccCount AS kakaoResendSuccCount
|
||||
, MMD.kakaoResendFailCount AS kakaoResendFailCount
|
||||
, MMD.resendWaitCount AS resendWaitCount
|
||||
, MMD.resendSuccCount AS resendSuccCount
|
||||
, MMD.resendFailCount AS resendFailCount
|
||||
<isEqual property="yellowIdYn" compareValue="Y">
|
||||
, MKPI.YELLOW_ID AS yellowId
|
||||
</isEqual>
|
||||
@ -8779,9 +8779,9 @@
|
||||
, SUM(CASE WHEN MSG_RESULT = '00' THEN 1 ELSE 0 END) AS waitCount
|
||||
, SUM(CASE WHEN MSG_RESULT = '10' THEN 1 ELSE 0 END) AS successCount
|
||||
, SUM(CASE WHEN MSG_RESULT = '20' THEN 1 ELSE 0 END) AS failCount
|
||||
, SUM(CASE WHEN MSG_RESULT = '30' THEN 1 ELSE 0 END) AS kakaoResendWaitCount
|
||||
, SUM(CASE WHEN MSG_RESULT = '40' THEN 1 ELSE 0 END) AS kakaoResendSuccCount
|
||||
, SUM(CASE WHEN MSG_RESULT = '50' THEN 1 ELSE 0 END) AS kakaoResendFailCount
|
||||
, SUM(CASE WHEN MSG_RESULT = '30' THEN 1 ELSE 0 END) AS resendWaitCount
|
||||
, SUM(CASE WHEN MSG_RESULT = '40' THEN 1 ELSE 0 END) AS resendSuccCount
|
||||
, SUM(CASE WHEN MSG_RESULT = '50' THEN 1 ELSE 0 END) AS resendFailCount
|
||||
FROM
|
||||
MJ_MSG_DATA
|
||||
GROUP BY
|
||||
|
||||
@ -4772,8 +4772,8 @@ function fnInputSmsTxt(){
|
||||
</td>
|
||||
<td><fmt:formatNumber value="${kakaoResultList.msgGroupCnt}" type="number" /></td>
|
||||
<td><fmt:formatNumber value="${kakaoResultList.successCount}" type="number" /></td>
|
||||
<td><fmt:formatNumber value="${kakaoResultList.kakaoResendSuccCount + kakaoResultList.kakaoResendFailCount + kakaoResultList.kakaoResendWaitCount}" type="number" /></td>
|
||||
<td><fmt:formatNumber value="${kakaoResultList.kakaoResendSuccCount}" type="number" /></td>
|
||||
<td><fmt:formatNumber value="${kakaoResultList.resendSuccCount + kakaoResultList.resendFailCount + kakaoResultList.resendWaitCount}" type="number" /></td>
|
||||
<td><fmt:formatNumber value="${kakaoResultList.resendSuccCount}" type="number" /></td>
|
||||
<td><fmt:formatNumber value="${(kakaoResultList.successCount / kakaoResultList.msgGroupCnt) * 100}" pattern="#,###" />%</td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user