|
|
|
@ -70,7 +70,7 @@ public class AsyncDataServiceImpl implements IAsyncDataService {
|
|
|
|
|
currentPage = one.getCurrentPage(); |
|
|
|
|
}else{ |
|
|
|
|
//查询本次同步一共多少的个订单
|
|
|
|
|
Integer totalNum = orderClient.getTotalCountBy(null,oldWarehouseId); |
|
|
|
|
Integer totalNum = orderClient.getTotalCountBy("",oldWarehouseId); |
|
|
|
|
if(totalNum == 0){ |
|
|
|
|
log.info("################syncOrderInfo: 暂无需要执行的数据"); |
|
|
|
|
throw new CustomerException(403,"暂无需要执行的数据"); |
|
|
|
@ -104,7 +104,7 @@ public class AsyncDataServiceImpl implements IAsyncDataService {
|
|
|
|
|
for (int j = currentPage; j < totalPage; j++) { |
|
|
|
|
log.info("##################syncOrderInfo: 当前同步的第{}页的数据",j+1); |
|
|
|
|
try{ |
|
|
|
|
List<String> orderCodeList = orderClient.findOrderCodeListByPage(null,oldWarehouseId,j,pageSize); |
|
|
|
|
List<String> orderCodeList = orderClient.findOrderCodeListByPage("",oldWarehouseId,j,pageSize); |
|
|
|
|
|
|
|
|
|
syncOrderInfoService.handleData(orderCodeList,oldWarehouseId,newWarehouseId,inventoryId); |
|
|
|
|
|
|
|
|
|