63 lines
2.1 KiB
PHP
63 lines
2.1 KiB
PHP
<table class="table table-bordered table-hover align-middle">
|
|
<tr class="text-center">
|
|
<th rowspan="2">고객명</th>
|
|
<th colspan="2">일반</th>
|
|
<th colspan="2">방어</th>
|
|
<th colspan="2">전용</th>
|
|
<th colspan="2">대체</th>
|
|
<th colspan="3">테스트</th>
|
|
<th colspan="3">합계</th>
|
|
</tr>
|
|
<tr class="text-center">
|
|
<th>도쿄</th>
|
|
<th>치바</th>
|
|
<th>도쿄</th>
|
|
<th>치바</th>
|
|
<th>도쿄</th>
|
|
<th>치바</th>
|
|
<th>도쿄</th>
|
|
<th>치바</th>
|
|
<th>도쿄</th>
|
|
<th>치바</th>
|
|
<th>합계</th>
|
|
<th>도쿄</th>
|
|
<th>치바</th>
|
|
<th>합계</th>
|
|
</tr>
|
|
<?php foreach (SITES as $key => $label): ?>
|
|
<tr class="text-center">
|
|
<td><?= $label ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['normal']['tokyo'] ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['normal']['chiba'] ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['defence']['tokyo'] ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['defence']['chiba'] ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['dedicated']['tokyo'] ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['dedicated']['chiba'] ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['alternative']['tokyo'] ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['alternative']['chiba'] ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['test']['tokyo'] ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['test']['chiba'] ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['test']['summary'] ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['tokyo_summary'] ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['chiba_summary'] ?></td>
|
|
<td><?= $serviceCellDatas['totalCounts'][$key]['all_summary'] ?></td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
<tr class="text-center">
|
|
<td>총합계</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
</tr>
|
|
</table>
|