|
|
|
@ -2842,16 +2842,41 @@ public class DistributionAsyncServiceImpl implements IDistributionAsyncService {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
waybillBilllByWaybillNo.setTenantId(tenant.getTenantId()); |
|
|
|
|
Long l = warehouseWaybillClient.addEnntity(waybillBilllByWaybillNo); |
|
|
|
|
waybillBilllByWaybillNo.setId(l); |
|
|
|
|
|
|
|
|
|
WarehouseWaybillEntity byWaybillNo = warehouseWaybillClient.findByWaybillNo(waybillBilllByWaybillNo.getWaybillNo()); |
|
|
|
|
if(byWaybillNo==null){ |
|
|
|
|
Long l = warehouseWaybillClient.addEnntity(waybillBilllByWaybillNo); |
|
|
|
|
waybillBilllByWaybillNo.setId(l); |
|
|
|
|
}else{ |
|
|
|
|
waybillBilllByWaybillNo.setId(byWaybillNo.getId()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<WarehouseWayBillDetail> byWaybillId = warehouseWaybillDetailClient.findByWaybillId(waybillBilllByWaybillNo.getId()); |
|
|
|
|
|
|
|
|
|
for (WarehouseWayBillDetail warehouseWayBillDetail : t) { |
|
|
|
|
warehouseWayBillDetail.setId(null); |
|
|
|
|
warehouseWayBillDetail.setWaybillId(waybillBilllByWaybillNo.getId()); |
|
|
|
|
warehouseWaybillDetailClient.addEntity(warehouseWayBillDetail); |
|
|
|
|
for (WarehouseWayBillDetail wayBillDetail : byWaybillId) { |
|
|
|
|
|
|
|
|
|
if(wayBillDetail.getProductName().equals(warehouseWayBillDetail.getProductName())){ |
|
|
|
|
// 不执行
|
|
|
|
|
warehouseWayBillDetail.setId(wayBillDetail.getId()); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(warehouseWayBillDetail.getId()==null){ |
|
|
|
|
warehouseWayBillDetail.setWaybillId(waybillBilllByWaybillNo.getId()); |
|
|
|
|
warehouseWaybillDetailClient.addEntity(warehouseWayBillDetail); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<TrunklineWaybillOrderEntity> listByWaybillNo = trunklineWaybillOrderClient.findListByWaybillNo(waybillBilllByWaybillNo.getWaybillNo()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (TrunklineWaybillOrderEntity trunklineWaybillOrderEntity : collect1) { |
|
|
|
|
|
|
|
|
|
trunklineWaybillOrderEntity.setId(null); |
|
|
|
@ -2872,8 +2897,26 @@ public class DistributionAsyncServiceImpl implements IDistributionAsyncService {
|
|
|
|
|
trunklineWaybillOrderEntity.setAdvanceId(foundEntity.getId()); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
Long l1 = trunklineWaybillOrderClient.addEntityReturnId(trunklineWaybillOrderEntity); |
|
|
|
|
trunklineWaybillOrderEntity.setId(l1); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (TrunklineWaybillOrderEntity waybillOrderEntity : listByWaybillNo) { |
|
|
|
|
|
|
|
|
|
if(waybillOrderEntity.getOrderCode().equals(trunklineWaybillOrderEntity.getOrderCode())){ |
|
|
|
|
trunklineWaybillOrderEntity.setId(waybillOrderEntity.getId()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
if(trunklineWaybillOrderEntity.getId()==null){ |
|
|
|
|
|
|
|
|
|
Long l1 = trunklineWaybillOrderClient.addEntityReturnId(trunklineWaybillOrderEntity); |
|
|
|
|
|
|
|
|
|
trunklineWaybillOrderEntity.setId(l1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<Long> ids = Arrays.asList(waybillBilllByWaybillNo.getId()); |
|
|
|
|
List<TrunklineWaybillPackageEntity> listByWaybillIds = trunklineWaybillPackageClient.findListByWaybillIds(ids); |
|
|
|
|
|
|
|
|
|
for (TrunklineWaybillPackageEntity trunklineWaybillPackageEntity : collect3) { |
|
|
|
|
trunklineWaybillPackageEntity.setId(null); |
|
|
|
@ -2892,8 +2935,21 @@ public class DistributionAsyncServiceImpl implements IDistributionAsyncService {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (TrunklineWaybillPackageEntity listByWaybillId : listByWaybillIds) { |
|
|
|
|
|
|
|
|
|
if(listByWaybillId.getWaybillId().equals(trunklineWaybillPackageEntity.getWaybillId())){ |
|
|
|
|
if(listByWaybillId.getOrderPackageCode().equals(trunklineWaybillPackageEntity.getOrderPackageCode())){ |
|
|
|
|
trunklineWaybillPackageEntity.setId(listByWaybillId.getId()); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
if(trunklineWaybillPackageEntity.getId()==null){ |
|
|
|
|
trunklineWaybillPackageClient.addEntity(trunklineWaybillPackageEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunklineWaybillPackageClient.addEntity(trunklineWaybillPackageEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -2912,7 +2968,26 @@ public class DistributionAsyncServiceImpl implements IDistributionAsyncService {
|
|
|
|
|
|
|
|
|
|
private void saveTrunklineAdvanceDetailEntity(List<TrunklineAdvanceDetailEntity> t, TrunklineAdvanceEntity trunklineAdvanceEntity, String mallName) { |
|
|
|
|
Tenant tenant = changeDataBase(mallName); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<Long> ids = Arrays.asList(trunklineAdvanceEntity.getId()); |
|
|
|
|
|
|
|
|
|
List<TrunklineAdvanceDetailVO> listByAdvanceIds = trunklineAdvanceDetailClient.findListByAdvanceIds(ids); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (TrunklineAdvanceDetailEntity trunklineAdvanceDetailEntity : t) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 检测 保存的对象是否已经存在
|
|
|
|
|
for (TrunklineAdvanceDetailVO listByAdvanceId : listByAdvanceIds) { |
|
|
|
|
if(listByAdvanceId.getOrderPackageCode().equals(trunklineAdvanceDetailEntity.getOrderPackageCode())){ |
|
|
|
|
trunklineAdvanceDetailEntity.setId(listByAdvanceId.getId()); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
trunklineAdvanceDetailEntity.setPackageStatus("0"); |
|
|
|
|
trunklineAdvanceDetailEntity.setAdvanceId(trunklineAdvanceEntity.getId()); |
|
|
|
|
trunklineAdvanceDetailEntity.setTenantId(tenant.getTenantId()); |
|
|
|
|