Commit b16f8722 authored by chenjiuping's avatar chenjiuping

异常订单备案查询条件错误

parent e58bbf3c
...@@ -2724,7 +2724,7 @@ public class OrderExceptionServiceImpl extends AbstractService<OrderExceptionMap ...@@ -2724,7 +2724,7 @@ public class OrderExceptionServiceImpl extends AbstractService<OrderExceptionMap
queryWrapper.in(null != reqVo.getGoodsTypes(), "m.prod_type", reqVo.getGoodsTypes()); queryWrapper.in(null != reqVo.getGoodsTypes(), "m.prod_type", reqVo.getGoodsTypes());
//备案 //备案
queryWrapper.in(null != reqVo.getProductRecord(), "o.product_record", reqVo.getProductRecord()); queryWrapper.in(null != reqVo.getProductRecord(), "a.product_record", reqVo.getProductRecord());
StatisticsOrderVO vo = orderExceptionMapper.statisticsExceptionOrder(queryWrapper, reqVo.getOrderExceptionType(), startTime, endTime); StatisticsOrderVO vo = orderExceptionMapper.statisticsExceptionOrder(queryWrapper, reqVo.getOrderExceptionType(), startTime, endTime);
if (Objects.nonNull(vo)) { if (Objects.nonNull(vo)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment