...
|
...
|
@@ -292,7 +292,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { |
|
|
int receivedNum = buyerOrderMapper.selectCountByStatusAndDepotNo(receivedList, req.getDepotNo(),null);
|
|
|
int processingNum = buyerOrderMapper.selectCountByStatusAndDepotNo(processingList, req.getDepotNo(), "haveNotExpress");
|
|
|
int alreadyDeliverNum = buyerOrderMapper.selectCountByStatusAndDepotNo(alreadyDeliverList, req.getDepotNo(), "haveExpress");
|
|
|
int problemNum = buyerOrderMapper.selectCountByStatusAndDepotNo(problemList, req.getDepotNo(),null);
|
|
|
int problemNum = buyerOrderMapper.selectCountByStatusAndDepotNo(problemList, req.getDepotNo(),"haveNotExpress");
|
|
|
|
|
|
resultMap.put("receivedNum", receivedNum);
|
|
|
resultMap.put("processingNum", processingNum);
|
...
|
...
|
|