mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
92 lines
2.6 KiB
HTML
92 lines
2.6 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>
|
|
|
|
<table cellspacing="0" class="gridlist" cellpadding="0" border="0" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th>店铺名称</th>
|
|
<th>外部区域仓ID</th>
|
|
<th>区域仓同步状态</th>
|
|
<th>绑定地址同步状态</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<{foreach from=$warehouselist item=warehouse}>
|
|
<tr>
|
|
<td><{$warehouse.shop_name}></td>
|
|
<td><{$warehouse.outwarehouse_id}></td>
|
|
<td>
|
|
<{if $warehouse.sync_warehouse == 0}>
|
|
未同步
|
|
<{elseif $warehouse.sync_warehouse == 1}>
|
|
已同步
|
|
<{elseif $warehouse.sync_warehouse == 2}>
|
|
失败
|
|
<{/if}>
|
|
|
|
</td>
|
|
<td>
|
|
<{if $warehouse.sync_status == 0}>
|
|
未同步
|
|
<{elseif $warehouse.sync_status == 1}>
|
|
已同步
|
|
<{elseif $warehouse.sync_status == 2}>
|
|
失败
|
|
<{/if}>
|
|
</td>
|
|
</tr>
|
|
<{/foreach}>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<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=$addressList item=address}>
|
|
<tr>
|
|
<td><{$address.province}></td>
|
|
<td><{$address.city}></td>
|
|
<td><{$address.street}></td>
|
|
<td><{$address.address}></td>
|
|
|
|
</tr>
|
|
<{/foreach}>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
|