mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<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> |