Files
OMS/app/wms/view/admin/delivery/delivery_serial.html
2025-12-28 23:13:25 +08:00

37 lines
1.2 KiB
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.
-->
<{capture name="header"}>
<link href="../app/wms/statics/wms.css" rel="stylesheet" type="text/css">
<{/capture}>
<div class="tableform">
<h4>唯一码信息:</h4>
<div class="division">
<{if count($items) > 0}>
<table border="0" cellspacing="0" class="gridlist" cellpadding="0">
<thead>
<tr>
<th>基础物料编码:</th>
<th>基础物料名称:</th>
<th>唯一码</th>
<th>状态</th>
</tr></thead>
<tbody><{foreach from=$items item=item}>
<tr>
<td><{$item.bn}></td>
<td><{$item.product_name}></td>
<td><{$item.serial_number}></td>
<td><{if $item.status == 0}>已质检<{elseif $item.status == 1}>已出库<{elseif $item.status == 2}>已作废<{/if}></td>
</tr>
<{/foreach}>
</tbody>
</table>
<{else}>
<span>没有关联的唯一码信息</span>
<{/if}>
</div>
</div>