Files
OMS/app/ediws/view/reship_items.html
2025-12-28 23:13:25 +08:00

36 lines
850 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.
-->
<div class="tableform">
<div class="division">
<h5>主库退货单</h5>
<table class="gridlist" style="margin:4px 0;">
<thead>
<tr>
<th>商品编号</th>
<th>商品名称</th>
<th>入库数量</th>
</tr>
</thead>
<{foreach from=$items item=item}>
<tr>
<th><{$item.skuid}></th>
<th><{$item.skuname}></th>
<th><{$item.actualnum}></th>
</tr>
<{/foreach}>
</table>
</div>
</div>