mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 10:55:34 +08:00
28 lines
750 B
HTML
28 lines
750 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<div class="division">
|
||
<h4>本单操作记录</h4>
|
||
<table cellspacing="0" class="gridlist" cellpadding="0" border="0" width="100%">
|
||
<thead>
|
||
<tr>
|
||
<th>操作时间</th>
|
||
<th>操作人</th>
|
||
<th>行为</th>
|
||
<th>操作内容</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<{foreach from=$logs item=his}>
|
||
<tr>
|
||
<td><{$his.operate_time|cdate}></td>
|
||
<td><{$his.op_name}></td>
|
||
<td><{$his.operation}></td>
|
||
<td><{$his.memo}></td>
|
||
</tr>
|
||
<{/foreach}>
|
||
</tbody>
|
||
</table>
|
||
</div> |