...
|
...
|
@@ -1701,9 +1701,14 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { |
|
|
|
|
|
querySecondInfo(resp, skup, buyerOrder.getAttributes()); // 查询二手信息
|
|
|
|
|
|
queryAberrationNum(resp, buyerOrder.getSellerUid()); // 查询违规记录数
|
|
|
|
|
|
return resp;
|
|
|
}
|
|
|
|
|
|
private void queryAberrationNum(QcOrderDetailResp resp, Integer sellerUid) {
|
|
|
resp.setAberrationNum(buyerOrderMapper.selectCountByUidStatus(Lists.newArrayList(OrderStatus.CHECKING_FAKE.getCode()), sellerUid));
|
|
|
}
|
|
|
|
|
|
|
|
|
@Override
|
...
|
...
|
|