Files
OMS/app/logisticsmanager/view/admin/channel/detail_log.html
2026-01-04 19:08:31 +08:00

61 lines
2.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 2012-2026 ShopeX (https://www.shopex.cn)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<{capture name="header"}>
<link href="../apps/ome/statics/ome.css" rel="stylesheet" type="text/css">
<{/capture}>
<div class="division">
<h4>电子面单号导入记录</h4>
<{if $channel_type == 'customs'}>
<h5>第一步下载CSV模板文件</h5>
<form method="post" action="index.php?app=logisticsmanager&ctl=admin_channel&act=exportTemplate" class="tableform" target='download' enctype="multipart/form-data">
<{button class="btn-primary" label="下载" type="submit"}>
</form>
<h5>第二步上传填写好的CSV文件</h5>
<form action='index.php?app=omecsv&ctl=admin_to_import&act=treat&ctler=logisticsmanager_mdl_waybill&add=logisticsmanager&channel_id=<{$channel_id}>' method='post' target="uploadframe" enctype="multipart/form-data" id="import_form" class="tableform">
<th width="10%">导入文件:</th>
<td width="20%">
<input type='file' name='import_file' id='ImportCSV'/>
</td>
<{button label=$___desktop="导入"|t:'desktop' id="ImportBtn" type="submit"}>
</form>
<{/if}>
<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=$log_list item=log}>
<tr>
<td><{$log.operate_time}></td>
<td><{$log.op_name}></td>
<td><{$log.operation}></td>
<td><{$log.memo}></td>
</tr>
<{/foreach}>
</tbody>
</table>
</div>