mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-02 05:55:49 +08:00
36 lines
725 B
HTML
36 lines
725 B
HTML
<!--
|
||
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>
|
||
|