Commit 276945c5 by 周晓航

Merge branch 'master' of gitlab.freemud.com:order-group-application/order-group…

Merge branch 'master' of gitlab.freemud.com:order-group-application/order-group into KA-起送价是否按照原价计算-20210918-zxh
parents fb8c1841 4177b1c0
...@@ -57,4 +57,6 @@ public class McCafeQueryOrderVo { ...@@ -57,4 +57,6 @@ public class McCafeQueryOrderVo {
*/ */
private String channelType; private String channelType;
private String userId;
} }
...@@ -2561,6 +2561,9 @@ public class MCCafeOrderServiceImpl implements MCCafeOrderService { ...@@ -2561,6 +2561,9 @@ public class MCCafeOrderServiceImpl implements MCCafeOrderService {
orderConditionsReq.setPageNum(i); orderConditionsReq.setPageNum(i);
orderConditionsReq.setPageSize(500); orderConditionsReq.setPageSize(500);
orderConditionsReq.setSortRule(1); orderConditionsReq.setSortRule(1);
if(StringUtils.isNotBlank(queryOrderVo.getUserId())) {
orderConditionsReq.setUserId(queryOrderVo.getUserId());
}
BaseDownLoadResponse<List<OrderInfoReqs>> response = orderDownLoadSdkService.queryOrderByConditions(orderConditionsReq, LogThreadLocal.getTrackingNo()); BaseDownLoadResponse<List<OrderInfoReqs>> response = orderDownLoadSdkService.queryOrderByConditions(orderConditionsReq, LogThreadLocal.getTrackingNo());
AppLogUtil.infoLog("queryOrderByConditions:"+ JSON.toJSONString(response),null,null); AppLogUtil.infoLog("queryOrderByConditions:"+ JSON.toJSONString(response),null,null);
if(CollectionUtils.isEmpty(response.getResult())) { if(CollectionUtils.isEmpty(response.getResult())) {
......
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