mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-30 13:05:34 +08:00
59 lines
1.9 KiB
HTML
59 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.
|
||
-->
|
||
|
||
<div class="tableform">
|
||
<div class="division">
|
||
<h5>实销实结详情</h5>
|
||
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="orderdetails_basic">
|
||
<tbody>
|
||
<tr>
|
||
<th>出管单号:</th>
|
||
<td><{$items.kDanHao}></td>
|
||
<th>商品名称:</th>
|
||
<td><{$items.goodsName}></td>
|
||
</tr>
|
||
<tr>
|
||
<th style="width: auto;">订单号:</th>
|
||
<td><{$items.orderNo}></td>
|
||
<th style="width: auto;">销售数量:</th>
|
||
<td><{$items.quantity}></td>
|
||
|
||
</tr>
|
||
<tr>
|
||
|
||
<th >采购单号:</th>
|
||
<td><{$items.purchaseOrderNo}></td>
|
||
<th >单价:</th>
|
||
<td><{$items.price}></td>
|
||
</tr>
|
||
<tr>
|
||
|
||
<th >商品编码 :</th>
|
||
<td><{$items.sku}></td>
|
||
<th >销售金额 :</th>
|
||
<td><{$items.amount}></td>
|
||
</tr>
|
||
<tr>
|
||
|
||
<th >出入库时间 :</th>
|
||
<td><{$items.storeOutDate|date_format:'%Y-%m-%d %H:%M:%S'}></td>
|
||
<th >订单完成时间 :</th>
|
||
<td><{if $items.orderCompleteDate}><{$items.orderCompleteDate|date_format:'%Y-%m-%d %H:%M:%S'}><{/if}></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div> |