Commit 52e2aa37 by 徐康

Merge remote-tracking branch 'origin/master'

parents 31fe90a2 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