...
|
...
|
@@ -378,8 +378,8 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { |
|
|
resultMap.put("num_11", buyerOrderMapper.selectCountByStatus(getStatusListByNavStatus(11)));//平台鉴定通过
|
|
|
int currentSecondMinus24Hours = DateUtil.getCurrentTimeSeconds() - 24*60*60;
|
|
|
int currentSecondMinus48Hours = DateUtil.getCurrentTimeSeconds() - 48*60*60;
|
|
|
resultMap.put("num_12", buyerOrderMapper.selectCountByStatusForAbnormalSellerDelivery(getStatusListByNavStatus(12),currentSecondMinus24Hours));//待卖家发货
|
|
|
resultMap.put("num_13", buyerOrderMapper.selectCountByStatusForAbnormalSellerDelivery(getStatusListByNavStatus(13),currentSecondMinus48Hours));//待卖家发货
|
|
|
resultMap.put("num_12", buyerOrderMapper.selectCountByStatusForAbnormalSellerDelivery(getStatusListByNavStatus(12),currentSecondMinus24Hours,currentSecondMinus48Hours));//待卖家发货
|
|
|
resultMap.put("num_13", buyerOrderMapper.selectCountByStatusForAbnormalSellerDelivery(getStatusListByNavStatus(13),currentSecondMinus48Hours,null));//待卖家发货
|
|
|
return resultMap;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -2601,8 +2601,11 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { |
|
|
|
|
|
//特殊处理:物流异常的订单
|
|
|
if(12==req.getNavStatus()){
|
|
|
int currentSecondMinus24Hours = DateUtil.getCurrentTimeSeconds() - 24*60*60;
|
|
|
int nowSnd=DateUtil.getCurrentTimeSeconds();
|
|
|
int currentSecondMinus24Hours = nowSnd - 24*60*60;
|
|
|
int maxCurrentSecondMinusHours =nowSnd -48*60*60;
|
|
|
req.setCurrentSecondMinus24Hours(currentSecondMinus24Hours);
|
|
|
req.setMaxCurrentSecondMinusHours(maxCurrentSecondMinusHours);
|
|
|
req.setSellerDeliveryStatus(0);
|
|
|
}else if(13==req.getNavStatus()){
|
|
|
int currentSecondMinus24Hours = DateUtil.getCurrentTimeSeconds() - 48*60*60;
|
...
|
...
|
|