Files
OMS/app/ediws/view/accountorders.html
2025-12-28 23:13:25 +08:00

48 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
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>