Files
OMS/app/console/view/admin/stock/arrive_stock.html
2025-12-28 23:13:25 +08:00

23 lines
556 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<h3>在途库存明细查看</h3>
<table cellpadding="0" cellspacing="0" border="0" class="gridlist">
<thead>
<tr>
<th>单号</th>
<th>数量</th>
<th>单据类型</th>
</tr>
</thead>
<{foreach from=$data item=item}>
<tr>
<td><{$item.obj_bn}></td>
<td><{$item.num}></td>
<td><{if $item.obj_type == 'purchase'}>采购<{else}>入库单<{/if}></td></tr>
<{/foreach}>
</table>