Showing
1 changed file
with
3 additions
and
1 deletions
@@ -391,7 +391,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { | @@ -391,7 +391,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { | ||
391 | resultMap.put("problemNum", problemNum); | 391 | resultMap.put("problemNum", problemNum); |
392 | 392 | ||
393 | //查询异常包裹 | 393 | //查询异常包裹 |
394 | - resultMap.put("exceptionNum", abnormalPackageMapper.selectValidCnt(req.getQueryStr())); | 394 | + resultMap.put("exceptionNum", abnormalPackageMapper.selectValidCnt(null)); |
395 | 395 | ||
396 | return resultMap; | 396 | return resultMap; |
397 | } | 397 | } |
@@ -427,6 +427,8 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { | @@ -427,6 +427,8 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { | ||
427 | resultMap.put("processingNum", processingNum); | 427 | resultMap.put("processingNum", processingNum); |
428 | resultMap.put("alreadyDeliverNum", alreadyDeliverNum); | 428 | resultMap.put("alreadyDeliverNum", alreadyDeliverNum); |
429 | resultMap.put("problemNum", problemNum); | 429 | resultMap.put("problemNum", problemNum); |
430 | + //查询异常包裹 | ||
431 | + resultMap.put("exceptionNum", abnormalPackageMapper.selectValidCnt(queryStr)); | ||
430 | 432 | ||
431 | return resultMap; | 433 | return resultMap; |
432 | } | 434 | } |
-
Please register or login to post a comment