30 lines
1.1 KiB
PHP
30 lines
1.1 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="17%">총재고</th>
|
|
</tr>
|
|
<?php foreach ($partCellDatas['entities'] as $entity): ?>
|
|
<?php $partCellDatas['entity'] = $entity; ?>
|
|
<tr>
|
|
<td class="text-end text-nowrap">
|
|
<?=
|
|
form_label(
|
|
$entity->getTitle(),
|
|
'disk_modify',
|
|
[
|
|
"data-src" => "admin/part/ram/modify/" . $entity->getPK(),
|
|
"data-bs-toggle" => "modal",
|
|
"data-bs-target" => "#modal_action_form",
|
|
"class" => "text-primary form-label-sm",
|
|
]
|
|
);
|
|
?>
|
|
</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"><?= $entity->getStock() ?></td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</table>
|