mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 13:25:32 +08:00
32 lines
612 B
HTML
32 lines
612 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<div class="tableform">
|
||
<h4>明细</h4>
|
||
|
||
<div class="division">
|
||
<table border="0" cellspacing="0" cellpadding="0" class="gridlist" id="items-tbl">
|
||
<thead>
|
||
<tr>
|
||
|
||
<th>基础物料编码</th>
|
||
|
||
<th>申请数量</th>
|
||
</tr>
|
||
</thead>
|
||
<{foreach from=$items item=item}>
|
||
<tbody>
|
||
<tr>
|
||
|
||
<td><{$item.bn}></td>
|
||
|
||
<td><{$item.num}></td>
|
||
</tr>
|
||
</tbody>
|
||
<{/foreach}>
|
||
</table>
|
||
</div>
|
||
</div>
|