dbmsv4/app/Views/cells/part/disk_stock.php
2025-12-08 12:25:20 +09:00

19 lines
1.0 KiB
PHP

<table class="table table-bordered table-hover table-striped">
<tr>
<th class="text-center">항목</th>
<th class="text-center text-nowrap" width="13%">사용</th>
<th class="text-center text-nowrap" width="13%">가능</th>
<th class="text-center text-nowrap" width="13%">포맷</th>
<th class="text-center text-nowrap" width="15%">총재고</th>
</tr>
<?php foreach ($partCellDatas['entities'] as $entity): ?>
<?php $partCellDatas['entity'] = $entity; ?>
<tr>
<td class="text-end text-nowrap"><?= $partCellDatas['helper']->getListButton('modify', $entity->getTitle(), $partCellDatas) ?></td>
<td class="text-center text-nowrap"><?= $entity->getUsed() ?></td>
<td class="text-center text-nowrap"><?= $entity->getAvailable() ?></td>
<td class="text-center text-nowrap"><?= $partCellDatas['helper']->getFieldView('format', $entity->format, $partCellDatas) ?></td>
<td class="text-center text-nowrap"><?= $entity->getStock() ?></td>
</tr>
<?php endforeach ?>
</table>