|
@@ -52,8 +52,11 @@
|
|
|
<thead>
|
|
|
<tr class="text-c">
|
|
|
<th width="100">批次编号</th>
|
|
|
- <th width="50">订单数量</th>
|
|
|
<th width="80">店铺</th>
|
|
|
+ <th width="50">订单数量</th>
|
|
|
+ <th width="50">待审核数量</th>
|
|
|
+ <th width="50">代发货数量</th>
|
|
|
+ <th width="50">已发货数量</th>
|
|
|
<#--<th width="100">Excel下载</th>-->
|
|
|
<#--<th width="80">交易号下载</th>-->
|
|
|
<th width="80">创建时间</th>
|
|
@@ -65,10 +68,12 @@
|
|
|
<#list page.dataList as batch>
|
|
|
<tr class="text-c">
|
|
|
<td>${batch.batchId!''}</td>
|
|
|
- <td><a href="javascript:void(0)" style="color: #00E;" title="点击转到订单页面,查询该批次的所有订单" onclick="to_order_list('${batch.batchId!''}')">${batch.batchOrderNum!'0'}</a></td>
|
|
|
<td>${batch.batchChannel!''}</td>
|
|
|
- <#--<td>${batch.batchExcelPath!''}</td>-->
|
|
|
- <#--<td>${batch.batchTxtPath!''}</td>-->
|
|
|
+ <td><a href="javascript:void(0)" style="color: #00E;" title="点击转到订单页面,查询该批次的所有订单" onclick="to_order_list('${batch.batchId!''}',1)">${batch.batchOrderNum!'0'}</a></td>
|
|
|
+ <td><a href="javascript:void(0)" style="color: #00E;" title="点击转到订单页面,查询该批次的所有订单" onclick="to_order_list('${batch.batchId!''}',2)">${batch.pendingReviewNum!'0'}</a></td>
|
|
|
+ <td><a href="javascript:void(0)" style="color: #00E;" title="点击转到订单页面,查询该批次的所有订单" onclick="to_order_list('${batch.batchId!''}',3)">${batch.pendingDeliveredNum!'0'}</a></td>
|
|
|
+ <td><a href="javascript:void(0)" style="color: #00E;" title="点击转到订单页面,查询该批次的所有订单" onclick="to_order_list('${batch.batchId!''}',4)">${batch.shippedNum!'0'}</a></td>
|
|
|
+
|
|
|
<td>${(batch.batchCreateTime?string("yyyy-MM-dd HH:mm:ss"))!''}</td>
|
|
|
<td>
|
|
|
<a style="text-decoration:none;color: #00E;" href="javascript:void(0);" title="下载该批次的所有订单的物流信息" onclick="download_order('${batch.batchId!''}')">
|
|
@@ -100,8 +105,24 @@
|
|
|
*跳转到客诉列表页面
|
|
|
* @param employee
|
|
|
*/
|
|
|
- function to_order_list(batchId) {
|
|
|
- window.location.href= "${path}/admin/salesOrder/list_order_page?salesBatchId="+batchId;
|
|
|
+ function to_order_list(batchId,type) {
|
|
|
+ switch (type){
|
|
|
+ case 1:
|
|
|
+ window.location.href= "${path}/admin/salesOrder/list_order_page?salesBatchId="+batchId;
|
|
|
+ break;
|
|
|
+ case 2: //待审核数量
|
|
|
+ window.location.href= "${path}/admin/salesOrder/list_order_page?salesBatchId="+batchId + "&salesStatus=0";
|
|
|
+ break;
|
|
|
+ case 3: //代发货数量
|
|
|
+ window.location.href= "${path}/admin/salesOrder/list_order_page?salesBatchId="+batchId + "&salesShippingStatus=0";
|
|
|
+ break;
|
|
|
+ case 4: //已发货数量
|
|
|
+ window.location.href= "${path}/admin/salesOrder/list_order_page?salesBatchId="+batchId + "&salesShippingStatus=1";
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
/**
|