|
|
|
@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
|
|
|
|
import com.logpm.oldproject.feign.IAdvanceClient; |
|
|
|
|
import com.logpm.patch.dto.SyncInventoryDTO; |
|
|
|
|
import com.logpm.patch.entity.SyncInventoryEntity; |
|
|
|
|
import com.logpm.patch.service.ISyncOrderInfoService; |
|
|
|
@ -30,6 +31,7 @@ public class SyncOrderInfoController {
|
|
|
|
|
|
|
|
|
|
private final IBasicdataWarehouseClient warehouseClient; |
|
|
|
|
private final ISyncOrderInfoService syncOrderInfoService; |
|
|
|
|
private final IAdvanceClient advanceClient; |
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
@PostMapping("/syncOrder") |
|
|
|
@ -40,6 +42,7 @@ public class SyncOrderInfoController {
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
String orderCodes = syncInventoryDTO.getOrderCodes(); |
|
|
|
|
Integer syncType = syncInventoryDTO.getSyncType();//1订单 2 运单
|
|
|
|
|
|
|
|
|
|
if(StringUtil.isBlank(orderCodes)){ |
|
|
|
|
log.warn(method+"订单号不能为空 orderCodes={}",orderCodes); |
|
|
|
@ -51,16 +54,34 @@ public class SyncOrderInfoController {
|
|
|
|
|
log.warn(method+"仓库信息为空 myCurrentWarehouse={}",myCurrentWarehouse); |
|
|
|
|
return R.fail(403,"仓库信息为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(Objects.isNull(syncType)){ |
|
|
|
|
log.warn(method+"数据类型不能为空 syncType={}",syncType); |
|
|
|
|
return R.fail(403,"数据类型不能为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Long warehouseId = myCurrentWarehouse.getId(); |
|
|
|
|
log.info(method+" warehouseId={} oldWarehouseId={}",warehouseId,myCurrentWarehouse.getOldId()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BasicdataWarehouseEntity entityWarehouseId = warehouseClient.getEntityWarehouseId(warehouseId); |
|
|
|
|
log.info(method+" warehouseId={} oldWarehouseId={}",warehouseId,entityWarehouseId.getOldId()); |
|
|
|
|
|
|
|
|
|
String[] split = orderCodes.split(","); |
|
|
|
|
|
|
|
|
|
List<String> orderCodeList = new ArrayList<>(Arrays.asList(split)); |
|
|
|
|
List<String> orderCodeList = new ArrayList<>(); |
|
|
|
|
if(syncType.equals(1)){ |
|
|
|
|
//订单
|
|
|
|
|
String[] split = orderCodes.split(","); |
|
|
|
|
List<String> list = Arrays.asList(split); |
|
|
|
|
orderCodeList.addAll(list); |
|
|
|
|
}else if(syncType.equals(2)){ |
|
|
|
|
//运单
|
|
|
|
|
List<String> list = advanceClient.findListByWaybillNo(orderCodes); |
|
|
|
|
orderCodeList.addAll(list); |
|
|
|
|
}else{ |
|
|
|
|
log.warn(method+"数据类型不正确 syncType={}",syncType); |
|
|
|
|
return R.fail(403,"数据类型不正确"); |
|
|
|
|
} |
|
|
|
|
log.info(method+"当前处理的订单 orderCodeList={}",orderCodeList); |
|
|
|
|
|
|
|
|
|
syncOrderInfoService.handleData(orderCodeList,entityWarehouseId.getOldId(),warehouseId,null,null); |
|
|
|
|
|
|
|
|
|