|
|
|
@ -85,7 +85,9 @@ public class AsyncServiceImpl implements IAsyncService {
|
|
|
|
|
|
|
|
|
|
@ChangeAsync() |
|
|
|
|
@Override |
|
|
|
|
public void saveOtherData(String tenantId, List<WarehouseWaybillEntity> waybillBilllByWaybillNos, List<TrunklineAdvanceDetailVO> trunklineAdvanceDetailEntities, List<TrunklineAdvanceEntity> trunklineAdvanceEntities, List<TrunklineWaybillPackageEntity> trunklineWaybillPackageEntities, List<TrunklineWaybillOrderEntity> trunklineWaybillOrderEntities, List<WarehouseWayBillDetail> warehouseWayBillDetails, TrunklineWaybillTrackEntity trunklineWaybillTrackEntity) { |
|
|
|
|
public void saveOtherData(String tenantId, WarehouseWaybillEntity waybillBilllByWaybillNo, List<TrunklineAdvanceDetailVO> trunklineAdvanceDetailEntities, List<TrunklineAdvanceEntity> trunklineAdvanceEntities, List<TrunklineWaybillPackageEntity> trunklineWaybillPackageEntities, List<TrunklineWaybillOrderEntity> trunklineWaybillOrderEntities, List<WarehouseWayBillDetail> warehouseWayBillDetails, TrunklineWaybillTrackEntity trunklineWaybillTrackEntity) { |
|
|
|
|
|
|
|
|
|
log.info(">>> 执行保存数据到商家数据的功能 "); |
|
|
|
|
// 保存暂存单
|
|
|
|
|
Tenant tenant = null; |
|
|
|
|
R<Tenant> tenantFeign = sysClient.getTenant(tenantId); |
|
|
|
@ -94,10 +96,11 @@ public class AsyncServiceImpl implements IAsyncService {
|
|
|
|
|
tenant = tenantFeign.getData(); |
|
|
|
|
} |
|
|
|
|
String mallName = tenant.getTenantName(); |
|
|
|
|
log.info(">>> 执行保存数据到商家数据的功能 商家名称{}",tenant.getTenantName()); |
|
|
|
|
|
|
|
|
|
for (TrunklineAdvanceEntity trunklineAdvanceEntity : trunklineAdvanceEntities) { |
|
|
|
|
|
|
|
|
|
TrunklineAdvanceEntity finalTrunklineAdvanceEntity = trunklineAdvanceEntity; |
|
|
|
|
List<TrunklineAdvanceDetailEntity> t = trunklineAdvanceDetailEntities.stream().filter(trunklineAdvanceDetailEntity -> trunklineAdvanceDetailEntity.getAdvanceId().equals(finalTrunklineAdvanceEntity.getId())).collect(Collectors.toList()); |
|
|
|
|
List<TrunklineAdvanceDetailEntity> t = trunklineAdvanceDetailEntities.stream().filter(trunklineAdvanceDetailEntity -> trunklineAdvanceDetailEntity.getAdvanceId().equals(trunklineAdvanceEntity.getId())).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
saveTrunklineAdvanceEntity(trunklineAdvanceEntity, mallName); |
|
|
|
|
|
|
|
|
@ -111,154 +114,186 @@ public class AsyncServiceImpl implements IAsyncService {
|
|
|
|
|
|
|
|
|
|
// 保存运单
|
|
|
|
|
BasicdataWarehouseEntity basicdataWarehouseEntity = getBasicdataWarehouseEntity(mallName); |
|
|
|
|
for (WarehouseWaybillEntity waybillBilllByWaybillNo : waybillBilllByWaybillNos) { |
|
|
|
|
List<TrunklineWaybillOrderEntity> collect1 = trunklineWaybillOrderEntities.stream().filter(trunklineWaybillOrderEntity -> trunklineWaybillOrderEntity.getWaybillId().equals(waybillBilllByWaybillNo.getId())).collect(Collectors.toList()); |
|
|
|
|
List<WarehouseWayBillDetail> t = warehouseWayBillDetails.stream().filter(warehouseWayBillDetail -> warehouseWayBillDetail.getWaybillId().equals(waybillBilllByWaybillNo.getId())).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 修改运单的起始仓库 和末端仓
|
|
|
|
|
waybillBilllByWaybillNo.setDepartureWarehouseName(waybillBilllByWaybillNo.getDestinationWarehouseName()); |
|
|
|
|
waybillBilllByWaybillNo.setDepartureWarehouseId(null); |
|
|
|
|
List<TrunklineWaybillOrderEntity> collect1 = trunklineWaybillOrderEntities.stream().filter(trunklineWaybillOrderEntity -> trunklineWaybillOrderEntity.getWaybillId().equals(waybillBilllByWaybillNo.getId())).collect(Collectors.toList()); |
|
|
|
|
List<WarehouseWayBillDetail> t = warehouseWayBillDetails.stream().filter(warehouseWayBillDetail -> warehouseWayBillDetail.getWaybillId().equals(waybillBilllByWaybillNo.getId())).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
// 目的仓
|
|
|
|
|
if (basicdataWarehouseEntity != null) { |
|
|
|
|
waybillBilllByWaybillNo.setDestinationWarehouseId(basicdataWarehouseEntity.getId()); |
|
|
|
|
waybillBilllByWaybillNo.setDestinationWarehouseName(basicdataWarehouseEntity.getName()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 修改运单的起始仓库 和末端仓
|
|
|
|
|
waybillBilllByWaybillNo.setDepartureWarehouseName(waybillBilllByWaybillNo.getDestinationWarehouseName()); |
|
|
|
|
waybillBilllByWaybillNo.setDepartureWarehouseId(null); |
|
|
|
|
|
|
|
|
|
waybillBilllByWaybillNo.setTenantId(tenant.getTenantId()); |
|
|
|
|
// 目的仓
|
|
|
|
|
if (basicdataWarehouseEntity != null) { |
|
|
|
|
waybillBilllByWaybillNo.setDestinationWarehouseId(basicdataWarehouseEntity.getId()); |
|
|
|
|
waybillBilllByWaybillNo.setDestinationWarehouseName(basicdataWarehouseEntity.getName()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
WarehouseWaybillEntity byWaybillNo = warehouseWaybillClient.findByWaybillNo(waybillBilllByWaybillNo.getWaybillNo()); |
|
|
|
|
if (byWaybillNo == null) { |
|
|
|
|
Long l = warehouseWaybillClient.addEnntity(waybillBilllByWaybillNo); |
|
|
|
|
waybillBilllByWaybillNo.setId(l); |
|
|
|
|
} else { |
|
|
|
|
waybillBilllByWaybillNo.setId(byWaybillNo.getId()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
waybillBilllByWaybillNo.setTenantId(tenant.getTenantId()); |
|
|
|
|
|
|
|
|
|
List<WarehouseWayBillDetail> byWaybillId = warehouseWaybillDetailClient.findByWaybillId(waybillBilllByWaybillNo.getId()); |
|
|
|
|
WarehouseWaybillEntity byWaybillNo = warehouseWaybillClient.findByWaybillNo(waybillBilllByWaybillNo.getWaybillNo()); |
|
|
|
|
if (byWaybillNo == null) { |
|
|
|
|
Long l = warehouseWaybillClient.addEnntity(waybillBilllByWaybillNo); |
|
|
|
|
waybillBilllByWaybillNo.setId(l); |
|
|
|
|
} else { |
|
|
|
|
waybillBilllByWaybillNo.setId(byWaybillNo.getId()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (WarehouseWayBillDetail warehouseWayBillDetail : t) { |
|
|
|
|
warehouseWayBillDetail.setId(null); |
|
|
|
|
for (WarehouseWayBillDetail wayBillDetail : byWaybillId) { |
|
|
|
|
List<WarehouseWayBillDetail> byWaybillId = warehouseWaybillDetailClient.findByWaybillId(waybillBilllByWaybillNo.getId()); |
|
|
|
|
|
|
|
|
|
if (wayBillDetail.getProductName().equals(warehouseWayBillDetail.getProductName())) { |
|
|
|
|
// 不执行
|
|
|
|
|
warehouseWayBillDetail.setId(wayBillDetail.getId()); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
for (WarehouseWayBillDetail warehouseWayBillDetail : t) { |
|
|
|
|
warehouseWayBillDetail.setId(null); |
|
|
|
|
for (WarehouseWayBillDetail wayBillDetail : byWaybillId) { |
|
|
|
|
|
|
|
|
|
if (warehouseWayBillDetail.getId() == null) { |
|
|
|
|
warehouseWayBillDetail.setWaybillId(waybillBilllByWaybillNo.getId()); |
|
|
|
|
warehouseWaybillDetailClient.addEntity(warehouseWayBillDetail); |
|
|
|
|
if (wayBillDetail.getProductName().equals(warehouseWayBillDetail.getProductName())) { |
|
|
|
|
// 不执行
|
|
|
|
|
warehouseWayBillDetail.setId(wayBillDetail.getId()); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (warehouseWayBillDetail.getId() == null) { |
|
|
|
|
warehouseWayBillDetail.setWaybillId(waybillBilllByWaybillNo.getId()); |
|
|
|
|
warehouseWaybillDetailClient.addEntity(warehouseWayBillDetail); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QueryWrapper<TrunklineWaybillOrderEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("waybill_no", waybillBilllByWaybillNo.getWaybillNo()); |
|
|
|
|
List<TrunklineWaybillOrderEntity> listByWaybillNo = waybillOrderService.list(queryWrapper); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (TrunklineWaybillOrderEntity trunklineWaybillOrderEntity : collect1) { |
|
|
|
|
|
|
|
|
|
trunklineWaybillOrderEntity.setId(null); |
|
|
|
|
List<TrunklineWaybillPackageEntity> collect3 = trunklineWaybillPackageEntities.stream().filter(ts -> { |
|
|
|
|
return ts.getWaybillNo().equals(trunklineWaybillOrderEntity.getWaybillNo()) && ts.getAdvanceId().equals(trunklineWaybillOrderEntity.getAdvanceId()); |
|
|
|
|
}).collect(Collectors.toList()); |
|
|
|
|
QueryWrapper<TrunklineWaybillOrderEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("waybill_no", waybillBilllByWaybillNo.getWaybillNo()); |
|
|
|
|
List<TrunklineWaybillOrderEntity> listByWaybillNo = waybillOrderService.list(queryWrapper); |
|
|
|
|
|
|
|
|
|
trunklineWaybillOrderEntity.setWaybillId(waybillBilllByWaybillNo.getId()); |
|
|
|
|
trunklineWaybillOrderEntity.setTenantId(tenant.getTenantId()); |
|
|
|
|
for (TrunklineWaybillOrderEntity trunklineWaybillOrderEntity : collect1) { |
|
|
|
|
|
|
|
|
|
Optional<TrunklineAdvanceEntity> entityWithOrderNumber1123 = trunklineAdvanceEntities.stream() |
|
|
|
|
.filter(entity -> trunklineWaybillOrderEntity.getOrderCode().equals(entity.getOrderCode())) // 过滤出订单号为"1123"的实体
|
|
|
|
|
.findFirst(); // 获取第一个匹配的实体
|
|
|
|
|
trunklineWaybillOrderEntity.setId(null); |
|
|
|
|
List<TrunklineWaybillPackageEntity> collect3 = trunklineWaybillPackageEntities.stream().filter(ts -> { |
|
|
|
|
return ts.getWaybillNo().equals(trunklineWaybillOrderEntity.getWaybillNo()) && ts.getAdvanceId().equals(trunklineWaybillOrderEntity.getAdvanceId()); |
|
|
|
|
}).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
if (entityWithOrderNumber1123.isPresent()) { |
|
|
|
|
TrunklineAdvanceEntity foundEntity = entityWithOrderNumber1123.get(); |
|
|
|
|
// 使用找到的实体
|
|
|
|
|
trunklineWaybillOrderEntity.setAdvanceId(foundEntity.getId()); |
|
|
|
|
trunklineWaybillOrderEntity.setWaybillId(waybillBilllByWaybillNo.getId()); |
|
|
|
|
trunklineWaybillOrderEntity.setTenantId(tenant.getTenantId()); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
Optional<TrunklineAdvanceEntity> entityWithOrderNumber1123 = trunklineAdvanceEntities.stream() |
|
|
|
|
.filter(entity -> trunklineWaybillOrderEntity.getOrderCode().equals(entity.getOrderCode())) // 过滤出订单号为"1123"的实体
|
|
|
|
|
.findFirst(); // 获取第一个匹配的实体
|
|
|
|
|
|
|
|
|
|
if (entityWithOrderNumber1123.isPresent()) { |
|
|
|
|
TrunklineAdvanceEntity foundEntity = entityWithOrderNumber1123.get(); |
|
|
|
|
// 使用找到的实体
|
|
|
|
|
trunklineWaybillOrderEntity.setAdvanceId(foundEntity.getId()); |
|
|
|
|
|
|
|
|
|
for (TrunklineWaybillOrderEntity waybillOrderEntity : listByWaybillNo) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (waybillOrderEntity.getOrderCode().equals(trunklineWaybillOrderEntity.getOrderCode())) { |
|
|
|
|
trunklineWaybillOrderEntity.setId(waybillOrderEntity.getId()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (TrunklineWaybillOrderEntity waybillOrderEntity : listByWaybillNo) { |
|
|
|
|
|
|
|
|
|
if (waybillOrderEntity.getOrderCode().equals(trunklineWaybillOrderEntity.getOrderCode())) { |
|
|
|
|
trunklineWaybillOrderEntity.setId(waybillOrderEntity.getId()); |
|
|
|
|
} |
|
|
|
|
if (trunklineWaybillOrderEntity.getId() == null) { |
|
|
|
|
|
|
|
|
|
waybillOrderService.save(trunklineWaybillOrderEntity); |
|
|
|
|
} |
|
|
|
|
if (trunklineWaybillOrderEntity.getId() == null) { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
waybillOrderService.save(trunklineWaybillOrderEntity); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<Long> ids = Collections.singletonList(waybillBilllByWaybillNo.getId()); |
|
|
|
|
|
|
|
|
|
LambdaQueryWrapper<TrunklineWaybillPackageEntity> lambdaQueryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
|
lambdaQueryWrapper.in(TrunklineWaybillPackageEntity::getWaybillId, ids); |
|
|
|
|
List<TrunklineWaybillPackageEntity> listByWaybillIds = trunklineWaybillPackageService.list(lambdaQueryWrapper); |
|
|
|
|
List<Long> ids = Collections.singletonList(waybillBilllByWaybillNo.getId()); |
|
|
|
|
|
|
|
|
|
for (TrunklineWaybillPackageEntity trunklineWaybillPackageEntity : collect3) { |
|
|
|
|
trunklineWaybillPackageEntity.setId(null); |
|
|
|
|
trunklineWaybillPackageEntity.setWaybillId(waybillBilllByWaybillNo.getId()); |
|
|
|
|
trunklineWaybillPackageEntity.setTenantId(tenant.getTenantId()); |
|
|
|
|
LambdaQueryWrapper<TrunklineWaybillPackageEntity> lambdaQueryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
|
lambdaQueryWrapper.in(TrunklineWaybillPackageEntity::getWaybillId, ids); |
|
|
|
|
List<TrunklineWaybillPackageEntity> listByWaybillIds = trunklineWaybillPackageService.list(lambdaQueryWrapper); |
|
|
|
|
|
|
|
|
|
trunklineWaybillPackageEntity.setAdvanceId(trunklineWaybillOrderEntity.getAdvanceId()); |
|
|
|
|
for (TrunklineWaybillPackageEntity trunklineWaybillPackageEntity : collect3) { |
|
|
|
|
trunklineWaybillPackageEntity.setId(null); |
|
|
|
|
trunklineWaybillPackageEntity.setWaybillId(waybillBilllByWaybillNo.getId()); |
|
|
|
|
trunklineWaybillPackageEntity.setTenantId(tenant.getTenantId()); |
|
|
|
|
|
|
|
|
|
for (TrunklineAdvanceDetailVO listByAdvanceId : listByAdvanceIds) { |
|
|
|
|
if (listByAdvanceId.getAdvanceId().equals(trunklineWaybillOrderEntity.getAdvanceId())) { |
|
|
|
|
trunklineWaybillPackageEntity.setAdvanceId(trunklineWaybillOrderEntity.getAdvanceId()); |
|
|
|
|
|
|
|
|
|
if (listByAdvanceId.getOrderPackageCode().equals(trunklineWaybillPackageEntity.getOrderPackageCode())) { |
|
|
|
|
trunklineWaybillPackageEntity.setAdvanceDetailId(listByAdvanceId.getId()); |
|
|
|
|
for (TrunklineAdvanceDetailVO listByAdvanceId : listByAdvanceIds) { |
|
|
|
|
if (listByAdvanceId.getAdvanceId().equals(trunklineWaybillOrderEntity.getAdvanceId())) { |
|
|
|
|
|
|
|
|
|
if (listByAdvanceId.getOrderPackageCode().equals(trunklineWaybillPackageEntity.getOrderPackageCode())) { |
|
|
|
|
trunklineWaybillPackageEntity.setAdvanceDetailId(listByAdvanceId.getId()); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (TrunklineWaybillPackageEntity listByWaybillId : listByWaybillIds) { |
|
|
|
|
for (TrunklineWaybillPackageEntity listByWaybillId : listByWaybillIds) { |
|
|
|
|
|
|
|
|
|
if (listByWaybillId.getWaybillId().equals(trunklineWaybillPackageEntity.getWaybillId())) { |
|
|
|
|
if (listByWaybillId.getOrderPackageCode().equals(trunklineWaybillPackageEntity.getOrderPackageCode())) { |
|
|
|
|
trunklineWaybillPackageEntity.setId(listByWaybillId.getId()); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
if (listByWaybillId.getWaybillId().equals(trunklineWaybillPackageEntity.getWaybillId())) { |
|
|
|
|
if (listByWaybillId.getOrderPackageCode().equals(trunklineWaybillPackageEntity.getOrderPackageCode())) { |
|
|
|
|
trunklineWaybillPackageEntity.setId(listByWaybillId.getId()); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
if (trunklineWaybillPackageEntity.getId() == null) { |
|
|
|
|
trunklineWaybillPackageService.save(trunklineWaybillPackageEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
if (trunklineWaybillPackageEntity.getId() == null) { |
|
|
|
|
trunklineWaybillPackageService.save(trunklineWaybillPackageEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 查询运单作业节点数据
|
|
|
|
|
LambdaQueryWrapper<TrunklineWaybillTrackEntity> lambdaQueryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
|
lambdaQueryWrapper.eq(TrunklineWaybillTrackEntity::getWaybillNo, waybillBilllByWaybillNo.getWaybillNo()); |
|
|
|
|
lambdaQueryWrapper.eq(TrunklineWaybillTrackEntity::getTrackType, "10"); |
|
|
|
|
List<TrunklineWaybillTrackEntity> list = trunklineWaybillTrackService.list(lambdaQueryWrapper); |
|
|
|
|
if (list.isEmpty()) { |
|
|
|
|
|
|
|
|
|
trunklineWaybillTrackEntity.setWaybillId(waybillBilllByWaybillNo.getId()); |
|
|
|
|
trunklineWaybillTrackEntity.setTenantId(tenant.getTenantId()); |
|
|
|
|
BasicdataWarehouseEntity basicdataWarehouseEntity1 = getBasicdataWarehouseEntity(mallName); |
|
|
|
|
trunklineWaybillTrackEntity.setWarehouseId(basicdataWarehouseEntity1.getId()); |
|
|
|
|
trunklineWaybillTrackEntity.setWarehouseName(basicdataWarehouseEntity1.getName()); |
|
|
|
|
trunklineWaybillTrackService.save(trunklineWaybillTrackEntity); |
|
|
|
|
} |
|
|
|
|
// 查询运单作业节点数据
|
|
|
|
|
LambdaQueryWrapper<TrunklineWaybillTrackEntity> lambdaQueryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
|
lambdaQueryWrapper.eq(TrunklineWaybillTrackEntity::getWaybillNo, waybillBilllByWaybillNo.getWaybillNo()); |
|
|
|
|
lambdaQueryWrapper.eq(TrunklineWaybillTrackEntity::getTrackType, "10"); |
|
|
|
|
List<TrunklineWaybillTrackEntity> list = trunklineWaybillTrackService.list(lambdaQueryWrapper); |
|
|
|
|
if (list.isEmpty()) { |
|
|
|
|
|
|
|
|
|
trunklineWaybillTrackEntity.setWaybillId(waybillBilllByWaybillNo.getId()); |
|
|
|
|
trunklineWaybillTrackEntity.setTenantId(tenant.getTenantId()); |
|
|
|
|
BasicdataWarehouseEntity basicdataWarehouseEntity1 = getBasicdataWarehouseEntity(mallName); |
|
|
|
|
trunklineWaybillTrackEntity.setWarehouseId(basicdataWarehouseEntity1.getId()); |
|
|
|
|
trunklineWaybillTrackEntity.setWarehouseName(basicdataWarehouseEntity1.getName()); |
|
|
|
|
trunklineWaybillTrackService.save(trunklineWaybillTrackEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ChangeAsync() |
|
|
|
|
@Override |
|
|
|
|
public void deleteWaybillData(String tenantId, String waybillNo,String consignee) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
log.info("执行删除商场推送数据清理动作 商场名称:{}",consignee); |
|
|
|
|
// 根据运单号删除运单logpm_trunkline_waybill_package 的数据
|
|
|
|
|
trunklineWaybillPackageService.deleteByWaybillNo(waybillNo); |
|
|
|
|
// 根据运单号删除 logpm_trunkline_waybill_order 的数据
|
|
|
|
|
waybillOrderService.deleteByWaybillNo(waybillNo); |
|
|
|
|
|
|
|
|
|
// 根据运单号删除 logpm_warehouse_waybill_detail
|
|
|
|
|
warehouseWaybillDetailClient.deleteByWaybillNo(waybillNo); |
|
|
|
|
|
|
|
|
|
// 根据运单号删除 logpm_warehouse_waybill
|
|
|
|
|
warehouseWaybillClient.deleteByWaybillNo(waybillNo); |
|
|
|
|
|
|
|
|
|
// 根据运单号删除 logpm_trunkline_advance_detail
|
|
|
|
|
advanceService.deleteByWaybillNo(waybillNo); |
|
|
|
|
|
|
|
|
|
// 根据运单号删除 logpm_trunkline_advance
|
|
|
|
|
advanceDetailService.deleteByWaybillNo(waybillNo); |
|
|
|
|
|
|
|
|
|
// 根据运单号 删除 logpm_trunkline_waybill_track
|
|
|
|
|
trunklineWaybillTrackService.deleteByWaybillNo(waybillNo); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
e.printStackTrace(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private BasicdataWarehouseEntity getBasicdataWarehouseEntity(String mallName) { |
|
|
|
@ -316,12 +351,12 @@ public class AsyncServiceImpl implements IAsyncService {
|
|
|
|
|
// 查找商户的暂存单是否存在改制
|
|
|
|
|
|
|
|
|
|
QueryWrapper<TrunklineAdvanceEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("order_code", trunklineAdvanceEntity.getOrderCode()) |
|
|
|
|
queryWrapper.eq("order_code", trunklineAdvanceEntity.getOrderCode()); |
|
|
|
|
queryWrapper.eq("waybill_no", trunklineAdvanceEntity.getWaybillNo()) |
|
|
|
|
.last("limit 1"); |
|
|
|
|
TrunklineAdvanceEntity trunklineAdvanceEntity1 = advanceService.getOne(queryWrapper); |
|
|
|
|
BasicdataWarehouseEntity basicdataWarehouseEntity = getBasicdataWarehouseEntity(mallName); |
|
|
|
|
if (ObjectUtil.isEmpty(trunklineAdvanceEntity1)) { |
|
|
|
|
|
|
|
|
|
// 保存对象
|
|
|
|
|
if (basicdataWarehouseEntity != null) { |
|
|
|
|
trunklineAdvanceEntity.setWarehouseId(basicdataWarehouseEntity.getId()); |
|
|
|
|