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

36 lines
725 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">
<h4><{t}>有效期列表:<{/t}></h4>
<div class="division">
<table cellpadding="0" cellspacing="0" class="gridlist" cellpadding="0">
<thead>
<tr>
<th>基础物料编码</th>
<th>购买批次</th>
<th>生产时间</th>
<th>到期时间</th>
<th>数量</th>
</tr>
</thead>
<tbody>
<{foreach from=$usefuls item=item}>
<tr>
<td><{$item.bn}></td>
<td><{$item.purchase_code}></td>
<td><{$item.product_time|date_format:"%Y-%m-%d %H:%I:%S"}></td>
<td><{$item.expire_time|date_format:"%Y-%m-%d %H:%I:%S"}></td>
<td><{$item.num}></td>
</tr>
<{/foreach}>
</tbody>
</table>
</div></div>