dbmsv3 init...1

This commit is contained in:
choi.jh 2025-10-15 17:20:23 +09:00
parent 4f1114283b
commit 1960037887
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<table class="table table-bordered table-hover table-striped">
<tr>
<th>항목</th>
<th>갯수</th>
<th>포맷</th>
</tr>
<?php foreach ($partCellDatas['entities'] as $entity): ?>
<?php $partCellDatas['entity'] = $entity; ?>
<tr>
<?php foreach (['title', 'stock', 'format'] as $field): ?>
<td nowrap><?= $partCellDatas['service']->getHelper()->getFieldView($field, $entity->$field, $partCellDatas) ?></td>
<?php endforeach ?>
</tr>
<?php endforeach ?>
</table>

View File

@ -0,0 +1,14 @@
<table class="table table-bordered table-hover table-striped">
<tr>
<th>항목</th>
<th>갯수</th>
</tr>
<?php foreach ($partCellDatas['entities'] as $entity): ?>
<?php $partCellDatas['entity'] = $entity; ?>
<tr>
<?php foreach (['title', 'stock'] as $field): ?>
<td nowrap><?= $partCellDatas['service']->getHelper()->getFieldView($field, $entity->$field, $partCellDatas) ?></td>
<?php endforeach ?>
</tr>
<?php endforeach ?>
</table>