|
|
|
@ -915,5 +915,46 @@ public class SyncOrderInfoToPlatform {
|
|
|
|
|
return ReturnT.SUCCESS; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@XxlJob("syncWaybillInfoParceList") |
|
|
|
|
public ReturnT<String> syncWaybillInfoParceList(String param) { |
|
|
|
|
log.info("############syncWaybillInfoParceList: 同步运单下订单信息 开始"); |
|
|
|
|
|
|
|
|
|
if(StringUtil.isBlank(param)){ |
|
|
|
|
log.warn("###########syncWaybillOrderInfo: 仓库id为空"); |
|
|
|
|
throw new CustomerException(405,"仓库id为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<JSONObject> list = warehouseMappingDataService.findAllNeedWaybillList(); |
|
|
|
|
|
|
|
|
|
list.forEach(json -> { |
|
|
|
|
|
|
|
|
|
Integer id = json.getInt("id"); |
|
|
|
|
String waybillNo = json.getStr("waybillNo"); |
|
|
|
|
|
|
|
|
|
WarehouseWaybillEntity warehouseWaybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
if(Objects.isNull(warehouseWaybillEntity)){ |
|
|
|
|
log.warn("###########syncWaybillOrderInfo: 运单信息为空"); |
|
|
|
|
throw new CustomerException(405,"运单信息为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<String> orderCodes = warehouseMappingDataService.findOrderCodeList(waybillNo); |
|
|
|
|
|
|
|
|
|
Long waybillId = warehouseWaybillEntity.getId(); |
|
|
|
|
Long departureWarehouseId = warehouseWaybillEntity.getDepartureWarehouseId(); |
|
|
|
|
String departureWarehouseName = warehouseWaybillEntity.getDepartureWarehouseName(); |
|
|
|
|
Long destinationWarehouseId = warehouseWaybillEntity.getDestinationWarehouseId(); |
|
|
|
|
String destinationWarehouseName = warehouseWaybillEntity.getDestinationWarehouseName(); |
|
|
|
|
|
|
|
|
|
warehouseMappingDataService.updateParcelListWaybillInfo(orderCodes,waybillId,waybillNo,departureWarehouseId,departureWarehouseName,destinationWarehouseId,destinationWarehouseName); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
warehouseMappingDataService.updateRepairParcelListWaybillById(id,1); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
log.info("############syncWaybillOrderInfo: 同步运单信息 完成"); |
|
|
|
|
|
|
|
|
|
return ReturnT.SUCCESS; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|