날짜별 월별 통계

This commit is contained in:
kubo8
2022-12-22 18:01:42 +09:00
parent a6e819aa95
commit 7ef153f334
5 changed files with 284 additions and 277 deletions

View File

@@ -51,17 +51,23 @@
<div class="table calculate">
<table>
<colgroup>
<col width="7%" />
<col width="9.3%" />
<col width="9.3%" />
<col width="9.3%" />
<col width="9.3%" />
<col width="9.3%" />
<col width="9.3%" />
<col width="9.3%" />
<col width="9.3%" />
<col width="9.3%" />
<col width="9.3%" />
<col width="4%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
<col width="6%" />
</colgroup>
<thead>
<tr>
@@ -71,6 +77,9 @@
<th colspan="2">LMS</th>
<th colspan="2">MMS</th>
<th colspan="2">알림톡</th>
<th colspan="2">대체발송SMS</th>
<th colspan="2">대체발송LMS</th>
<th colspan="2">대체발송MMS</th>
</tr>
<tr class="total">
<th>발송건수</th>
@@ -83,6 +92,12 @@
<th>성공건수/(%)</th>
<th>발송건수</th>
<th>성공건수/(%)</th>
<th>발송건수</th>
<th>성공건수/(%)</th>
<th>발송건수</th>
<th>성공건수/(%)</th>
<th>발송건수</th>
<th>성공건수/(%)</th>
</tr>
</thead>
<tbody>
@@ -106,6 +121,18 @@
<td>
{{ option.succCntR.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}<br />({{ option.succRtR }}%)
</td>
<td>{{ option.fbSndCntS.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}</td>
<td>
{{ option.fbSuccCntS.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}<br />({{ option.succFbRtS }}%)
</td>
<td>{{ option.fbSndCntL.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}</td>
<td>
{{ option.fbSuccCntL.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}<br />({{ option.succFbRtL }}%)
</td>
<td>{{ option.fbSndCntM.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}</td>
<td>
{{ option.fbSuccCntM.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}<br />({{ option.succFbRtM }}%)
</td>
</tr>
</tbody>
</table>
@@ -336,6 +363,27 @@ export default {
excelData.sndCntR = this.list[i].sndCntR;
excelData.succCntR = succCntR;
// 대체발송 SMS 성공 건수
var fbSuccCntS = this.list[i].fbSuccCntS;
var succFbRtS = this.list[i].succFbRtS;
fbSuccCntS = fbSuccCntS + '(' + succFbRtS + '%)';
excelData.fbSndCntS = this.list[i].fbSndCntS;
excelData.fbSuccCntS = fbSuccCntS;
// 대체발송 LMS 성공 건수
var fbSuccCntL = this.list[i].fbSuccCntL;
var succFbRtL = this.list[i].succFbRtL;
fbSuccCntL = fbSuccCntL + '(' + succFbRtL + '%)';
excelData.fbSndCntL = this.list[i].fbSndCntL;
excelData.fbSuccCntL = fbSuccCntL;
// 대체발송 MMS 성공 건수
var fbSuccCntM = this.list[i].fbSuccCntM;
var succFbRtM = this.list[i].succFbRtM;
fbSuccCntM = fbSuccCntM + '(' + succFbRtM + '%)';
excelData.fbSndCntM = this.list[i].fbSndCntM;
excelData.fbSuccCntM = fbSuccCntM;
excelList.push(excelData);
}