dbmsv3 init...1
This commit is contained in:
parent
4f1114283b
commit
1960037887
15
app/Views/cells/part/disk_stock.php
Normal file
15
app/Views/cells/part/disk_stock.php
Normal 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>
|
||||
14
app/Views/cells/part/ram_stock.php
Normal file
14
app/Views/cells/part/ram_stock.php
Normal 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>
|
||||
Loading…
Reference in New Issue
Block a user