mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-13 09:15:41 +08:00
61 lines
2.2 KiB
HTML
61 lines
2.2 KiB
HTML
<!--
|
||
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>
|
||
|
||
|