|
@@ -75,13 +75,6 @@
|
|
|
<table class="table table-border table-bg table-bordered" style="margin-top: 10px;">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th width="10">批次号:</th>
|
|
|
- <td width="10" style="font-weight: normal;"><span>${order.salesBatchId!'暂无批次'}</span></td>
|
|
|
- <td width="10"></td>
|
|
|
- <th width="10">下单日期:</th>
|
|
|
- <td width="10" style="font-weight: normal;"><span>${(order.batchCreateTime?string("yyyy-MM-dd HH:mm:ss"))!''}</span></td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
<th width="10">订单编号:</th>
|
|
|
<td width="10" style="font-weight: normal;"><span>${order.salesOrderId!'暂无订单编号'}</span></td>
|
|
|
<td width="10"></td>
|
|
@@ -89,6 +82,13 @@
|
|
|
<td width="10" style="font-weight: normal;"><span>${order.salesDealCode!''}</span></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
+ <th width="10">订单ID:</th>
|
|
|
+ <td width="10" style="font-weight: normal;"><span>${order.salesId!''}</span></td>
|
|
|
+ <td width="10"></td>
|
|
|
+ <th width="10">批次号:</th>
|
|
|
+ <td width="10" style="font-weight: normal;"><span>${order.salesBatchId!'暂无批次'}</span></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
<th width="10">销售公司:</th>
|
|
|
<td width="10" style="font-weight: normal;"><span>${order.companyName!''}</span></td>
|
|
|
<td width="10"></td>
|
|
@@ -131,8 +131,8 @@
|
|
|
<td width="10" style="font-weight: normal;">${order.salesAdminName!''}</td>
|
|
|
|
|
|
<td width="10"></td>
|
|
|
- <th width="10"></th>
|
|
|
- <td width="10" style="font-weight: normal;"><span></span></td>
|
|
|
+ <th width="10">下单日期:</th>
|
|
|
+ <td width="10" style="font-weight: normal;"><span>${(order.batchCreateTime?string("yyyy-MM-dd HH:mm:ss"))!''}</span></td>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
</table>
|
|
@@ -153,6 +153,9 @@
|
|
|
<#--<th>产品图片</th>-->
|
|
|
<th>产品市场价(¥)</th>
|
|
|
<th>产品折扣价(¥)</th>
|
|
|
+ <th>小结(¥)</th>
|
|
|
+ <th>成本(¥)</th>
|
|
|
+ <th>成本小结(¥)</th>
|
|
|
<th>未退货数量</th>
|
|
|
<th>已退货数量</th>
|
|
|
<th>产品总数</th>
|
|
@@ -163,8 +166,11 @@
|
|
|
<td>${item.itemProductName!''}</td>
|
|
|
<td>${item.itemProductColor!''}</td>
|
|
|
<#--<td>${item.itemProductPic!''}</td>-->
|
|
|
- <td>${item.itemProductPrice/100!''}</td>
|
|
|
- <td>${item.itemProductDiscount/100!''}</td>
|
|
|
+ <td>${((item.itemProductPrice/100)?string("0.##"))!''}</td>
|
|
|
+ <td>${((item.itemProductDiscount/100)?string("0.##"))!''}</td>
|
|
|
+ <td>${((item.itemTotal/100)?string("0.##"))!''}</td>
|
|
|
+ <td>${((item.itemCost/100)?string("0.##"))!''}</td>
|
|
|
+ <td>${((item.itemCostTotal/100)?string("0.##"))!''}</td>
|
|
|
<td>${item.itemNum-item.itemReturnNum}</td>
|
|
|
<td>${item.itemReturnNum}</td>
|
|
|
<td>${item.itemNum}</td>
|