mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-17 02:55:31 +08:00
62 lines
1.9 KiB
HTML
62 lines
1.9 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.
|
|
-->
|
|
|
|
<{if !$env.get.target}><div class="division" container="true"><{/if}>
|
|
<h3>库存查看<span class="num">(货品冻结量:<strong><{$store_freeze_num}></strong>)</span></h3>
|
|
<table cellpadding="0" cellspacing="0" border="0" class="gridlist">
|
|
<thead>
|
|
<tr>
|
|
<th>序号</th>
|
|
<th>订单号</th>
|
|
<th>来源店铺</th>
|
|
<th>创建时间</th>
|
|
<th>支付状态</th>
|
|
<th>发货状态</th>
|
|
<th>购买数量</th>
|
|
<th>已发货数量</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<{assign var='num' value=1}>
|
|
<{foreach item=item from=$rows}>
|
|
<tr>
|
|
<td><{$num}></td>
|
|
<td><{$item.order_bn}></td>
|
|
<td><{$item.shop_name}></td>
|
|
<td><{$item.createtime}></td>
|
|
<td><{$item.pay_status}><{if $item.pay_status=='未支付'}>(失效时间:<{$item.order_limit_time}>)<{else}>(付款时间:<{$item.paytime}>)<{/if}></td>
|
|
<td><{$item.status}></td>
|
|
<td><{$item.nums}></td>
|
|
<td><{$item.sendnum}></td>
|
|
<input type="hidden" value=<{$num++}>></input>
|
|
</tr>
|
|
<{/foreach}>
|
|
</tbody>
|
|
</table>
|
|
<div class="table-action">
|
|
<{$pager}>
|
|
</div>
|
|
|
|
<{if !$env.get.target}></div><{/if}>
|
|
<{if !$env.get.target}>
|
|
<{capture name="footbar"}>
|
|
<div class="table-action">
|
|
<{button label="确 定" type="button" onclick="window.close();"}>
|
|
</div>
|
|
<{/capture}>
|
|
<{/if}>
|
|
|