|
|
|
@ -16,12 +16,18 @@
|
|
|
|
|
*/ |
|
|
|
|
package com.logpm.distribution.service.impl; |
|
|
|
|
|
|
|
|
|
import cn.hutool.db.Page; |
|
|
|
|
import com.alibaba.druid.sql.visitor.functions.If; |
|
|
|
|
import com.alibaba.fastjson.serializer.BigDecimalCodec; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataClientEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataFactoryCategoryEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataPriceEntity; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataClientClient; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataFactoryCategoryClient; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataPriceClient; |
|
|
|
|
import com.logpm.basicdata.vo.BasicdatPriceApiVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceDispatchAddClientVO; |
|
|
|
|
import com.logpm.distribution.bean.Res; |
|
|
|
|
import com.logpm.distribution.bean.Resp; |
|
|
|
|
import com.logpm.distribution.dto.DistributionAddvalueDTO; |
|
|
|
|
import com.logpm.distribution.dto.DistributionAddvaluePackageDTO; |
|
|
|
|
import com.logpm.distribution.dto.DistributionParcelNumberDTO; |
|
|
|
|
import com.logpm.distribution.dto.app.DistributionAppAddvalueDTO; |
|
|
|
@ -34,25 +40,26 @@ import com.logpm.distribution.vo.DistributionAddvalueVO;
|
|
|
|
|
import com.logpm.distribution.vo.app.DistributionAppAddvalueVO; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.apache.logging.log4j.util.Strings; |
|
|
|
|
import org.springblade.common.constant.loading.LoadingStatusConstant; |
|
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.core.tool.utils.Func; |
|
|
|
|
import org.springblade.core.tool.utils.RandomType; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
import java.math.BigInteger; |
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
|
import java.util.Objects; |
|
|
|
|
import java.util.concurrent.locks.Condition; |
|
|
|
|
import java.util.concurrent.atomic.AtomicReference; |
|
|
|
|
import java.util.function.Function; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
import java.util.stream.Stream; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 配送增值服务表 服务实现类 |
|
|
|
@ -75,6 +82,9 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
private final DistributionAddvalueDetailMapper distributionAddvalueDetailMapper; |
|
|
|
|
private final DistributionAddvaluePackageMapper distributionAddvaluePackageMapper; |
|
|
|
|
private final IDistributionLoadscanService distributionLoadscanService; |
|
|
|
|
private final IBasicdataPriceClient basicdataPriceClient; |
|
|
|
|
private final IBasicdataClientClient basicdataClientClient; |
|
|
|
|
private final IBasicdataFactoryCategoryClient basicdataFactoryCategoryClient; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -125,18 +135,21 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
if (Func.isNotEmpty(packageInfo) && packageInfo.size() == 1) { |
|
|
|
|
DistributionParcelListEntity parcelListEntity = packageInfo.get(0); |
|
|
|
|
DistributionAddvaluePackageEntity distributionAddvaluePackageEntiy = Func.copy(parcelListEntity, DistributionAddvaluePackageEntity.class); |
|
|
|
|
assert distributionAddvaluePackageEntiy != null; |
|
|
|
|
distributionAddvaluePackageEntiy.setConditions(1); |
|
|
|
|
assert distributionAddvaluePackageEntiy != null; |
|
|
|
|
distributionAddvaluePackageEntiy.setConditions(1); |
|
|
|
|
distributionAddvaluePackageEntiy.setId(null); |
|
|
|
|
distributionAddvaluePackageEntiy.setQuantity(parcelListEntity.getQuantity()); |
|
|
|
|
distributionAddvaluePackageEntiy.setPackageId(parcelListEntity.getId()); |
|
|
|
|
distributionAddvaluePackageEntiy.setMaterialName(parcelListEntity.getMaterialName()); |
|
|
|
|
distributionAddvaluePackageEntiy.setReservationId(distributionAppAddvalueDTO.getReservationId()); |
|
|
|
|
distributionAddvaluePackageEntiy.setStockArticleId(parcelListEntity.getStockArticleId()); |
|
|
|
|
distributionAddvaluePackageEntiy.setOrderPackageCode(parcelListEntity.getOrderPackageCode()); |
|
|
|
|
distributionAddvaluePackageEntiy.setRecordType("2"); |
|
|
|
|
distributionAddvaluePackageEntiy.setRecordType("1"); |
|
|
|
|
if (isManual.equals(2)) { |
|
|
|
|
distributionAddvaluePackageEntiy.setRecordType("3"); |
|
|
|
|
distributionAddvaluePackageEntiy.setRecordType("1"); |
|
|
|
|
} |
|
|
|
|
//查询包件的结算单位
|
|
|
|
|
|
|
|
|
|
return Res.scanSuccess("扫描成功", "扫描成功", distributionAddvaluePackageEntiy); |
|
|
|
|
} else if (packageInfo.isEmpty()) { |
|
|
|
|
//包件列表不存在,这里查询看库存品是否存在?
|
|
|
|
@ -145,17 +158,17 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
DisStockListDetailEntity disStockListDetailEntity = inventoryInfo.get(0); |
|
|
|
|
DistributionStockListEntity stockListEntity = distributionStockListService.getById(disStockListDetailEntity.getStockListId()); |
|
|
|
|
DistributionAddvaluePackageEntity distributionAddvaluePackageEntiy = Func.copy(disStockListDetailEntity, DistributionAddvaluePackageEntity.class); |
|
|
|
|
assert distributionAddvaluePackageEntiy != null; |
|
|
|
|
distributionAddvaluePackageEntiy.setConditions(2); |
|
|
|
|
assert distributionAddvaluePackageEntiy != null; |
|
|
|
|
distributionAddvaluePackageEntiy.setConditions(2); |
|
|
|
|
distributionAddvaluePackageEntiy.setQuantity(disStockListDetailEntity.getNum()); |
|
|
|
|
distributionAddvaluePackageEntiy.setPackageId(disStockListDetailEntity.getId()); |
|
|
|
|
distributionAddvaluePackageEntiy.setMaterialName(stockListEntity.getDescriptionGoods()); |
|
|
|
|
distributionAddvaluePackageEntiy.setReservationId(distributionAppAddvalueDTO.getReservationId()); |
|
|
|
|
distributionAddvaluePackageEntiy.setStockArticleId(disStockListDetailEntity.getStockListId()); |
|
|
|
|
distributionAddvaluePackageEntiy.setOrderPackageCode(disStockListDetailEntity.getStockPackageCode()); |
|
|
|
|
distributionAddvaluePackageEntiy.setRecordType("2"); |
|
|
|
|
distributionAddvaluePackageEntiy.setRecordType("1"); |
|
|
|
|
if (isManual.equals(2)) { |
|
|
|
|
distributionAddvaluePackageEntiy.setRecordType("3"); |
|
|
|
|
distributionAddvaluePackageEntiy.setRecordType("1"); |
|
|
|
|
} |
|
|
|
|
return Res.scanSuccess("扫描成功", "扫描成功", distributionAddvaluePackageEntiy); |
|
|
|
|
} else if (inventoryInfo.size() == 0) { |
|
|
|
@ -197,8 +210,8 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
public R saveAddvalueInfo(DistributionAppAddvalueDTO distributionAppAddvalueDTO) { |
|
|
|
|
List<DistributionAddvaluePackageDTO> packageEntityList = distributionAppAddvalueDTO.getPackageEntityList(); |
|
|
|
|
List<DistributionAddvaluePackageDTO> packageDTOList = packageEntityList.stream().filter(p -> Func.isNotEmpty(p.getQuantity()) && p.getQuantity() > 0).collect(Collectors.toList()); |
|
|
|
|
if (Func.isEmpty(packageDTOList)){ |
|
|
|
|
return Resp.scanFail("操作失败","无可用包件信息"); |
|
|
|
|
if (Func.isEmpty(packageDTOList)) { |
|
|
|
|
return Resp.scanFail("操作失败", "无可用包件信息"); |
|
|
|
|
} |
|
|
|
|
//查询是否重复添加
|
|
|
|
|
DistributionAddvalueEntity addvalueEntity = distributionAddvalueMapper.selectOne(Wrappers.<DistributionAddvalueEntity>query().lambda() |
|
|
|
@ -206,17 +219,17 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
.eq(DistributionAddvalueEntity::getRefId, distributionAppAddvalueDTO.getReservationId()) |
|
|
|
|
.eq(DistributionAddvalueEntity::getRefType, 1)); |
|
|
|
|
|
|
|
|
|
if (Func.isNotEmpty(addvalueEntity)){ |
|
|
|
|
if (Func.isNotEmpty(addvalueEntity)) { |
|
|
|
|
return Resp.scanFail("操作失败", "存在该类型增值服务项,如需更改请编辑"); |
|
|
|
|
} |
|
|
|
|
DistributionAddvalueDetailEntity distributionAddvalueDetailEntity = new DistributionAddvalueDetailEntity(); |
|
|
|
|
if (Func.isEmpty(distributionAppAddvalueDTO.getNum())) { |
|
|
|
|
return Resp.scanFail("添加失败", "错误的包件数量"); |
|
|
|
|
}else { |
|
|
|
|
} else { |
|
|
|
|
distributionAddvalueDetailEntity.setNum(distributionAppAddvalueDTO.getNum()); |
|
|
|
|
} |
|
|
|
|
DistributionReservationEntity reservationEntity = distributionReservationMapper.selectById(distributionAppAddvalueDTO.getReservationId()); |
|
|
|
|
if (Func.isEmpty(reservationEntity)){ |
|
|
|
|
if (Func.isEmpty(reservationEntity)) { |
|
|
|
|
return Resp.scanFail("添加失败", "客户信息错误"); |
|
|
|
|
} |
|
|
|
|
// 上楼 超区 平移 搬运 分拣 专车
|
|
|
|
@ -270,17 +283,105 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
distributionAddvalueDetailEntity.setAddvalueId(distributionAddvalueEntity.getId()); |
|
|
|
|
distributionAddvalueDetailEntity.setRecordType(2); |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntities = distributionReservationMapper.selectPackageListByReservationId(distributionAppAddvalueDTO.getReservationId()); |
|
|
|
|
if (parcelListEntities.size() == packageEntityList.size()){ |
|
|
|
|
if (parcelListEntities.size() == packageEntityList.size()) { |
|
|
|
|
distributionAddvalueDetailEntity.setRecordType(1); |
|
|
|
|
} |
|
|
|
|
distributionAddvalueDetailService.save(distributionAddvalueDetailEntity); |
|
|
|
|
List<DistributionAddvaluePackageEntity> addvaluePackageEntities = new ArrayList<>(); |
|
|
|
|
packageEntityList.stream().forEach(p->{p.setAddvalueDetailId(distributionAddvalueDetailEntity.getId());p.setQuantity(p.getZeroQuantity());addvaluePackageEntities.add(Func.copy(p,DistributionAddvaluePackageEntity.class));}); |
|
|
|
|
distributionAddvaluePackageService.saveBatch(addvaluePackageEntities); |
|
|
|
|
return Resp.scanSuccess("添加成功","添加成功"); |
|
|
|
|
} |
|
|
|
|
BigDecimal totalFee = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
|
|
|
|
|
packageEntityList.stream().forEach(p -> { |
|
|
|
|
p.setAddvalueDetailId(distributionAddvalueDetailEntity.getId()); |
|
|
|
|
p.setQuantity(p.getZeroQuantity()); |
|
|
|
|
p.setScanUserName(AuthUtil.getNickName()); |
|
|
|
|
DistributionAddvaluePackageEntity addvaluePackageEntity = Func.copy(p, DistributionAddvaluePackageEntity.class); |
|
|
|
|
//构建增值服务包件的收入
|
|
|
|
|
BigDecimal unitPrice = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
//查询此包件匹配的计划模板
|
|
|
|
|
//获取结算单价
|
|
|
|
|
List<PriceDispatchAddClientVO> priceDispatchAddClientVOS = basicdataPriceClient.dispatchAddPrice(BasicdatPriceApiVO.builder().clientId(p.getClientId().toString()).brandId(p.getBrandId().toString()).build()); |
|
|
|
|
if (Func.isEmpty(priceDispatchAddClientVOS)) { |
|
|
|
|
//此客户品牌下无单价信息
|
|
|
|
|
unitPrice = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
switch (p.getConditions()) { |
|
|
|
|
case 1: |
|
|
|
|
//查询订制品结算品类
|
|
|
|
|
BasicdataFactoryCategoryEntity entity1 = new BasicdataFactoryCategoryEntity(); |
|
|
|
|
entity1.setFirsts(p.getFirsts()); |
|
|
|
|
entity1.setSeconds(p.getSecond()); |
|
|
|
|
entity1.setThirds(p.getThirdProduct()); |
|
|
|
|
entity1.setMaterielName(p.getMaterialName()); |
|
|
|
|
entity1.setBrandId(p.getBrandId()); |
|
|
|
|
BasicdataFactoryCategoryEntity factoryCategoryEntity1 = basicdataFactoryCategoryClient.findEntityByThreeCategory(entity1); |
|
|
|
|
if (Func.isEmpty(factoryCategoryEntity1)){ |
|
|
|
|
unitPrice = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
} |
|
|
|
|
if (!Func.isEmpty(priceDispatchAddClientVOS)&&Func.isNotEmpty(factoryCategoryEntity1)){ |
|
|
|
|
//获取单价
|
|
|
|
|
unitPrice = getUnitPrice(priceDispatchAddClientVOS,factoryCategoryEntity1,distributionAppAddvalueDTO); |
|
|
|
|
} |
|
|
|
|
//判定该包件是否属于该客户
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionReservationMapper.selectPackageListByReservationId(distributionAppAddvalueDTO.getReservationId()); |
|
|
|
|
// boolean packageFlag = parcelListEntities.stream().allMatch(pack -> !Func.equals(pack.getId(), p.getPackageId()));
|
|
|
|
|
boolean packageFlag = parcelListEntityList.stream().map(DistributionParcelListEntity::getId).collect(Collectors.toList()).contains(p.getPackageId()); |
|
|
|
|
if (!packageFlag) { |
|
|
|
|
throw new RuntimeException("不属于该客户包件"); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case 2: |
|
|
|
|
BasicdataFactoryCategoryEntity entity2 = new BasicdataFactoryCategoryEntity(); |
|
|
|
|
entity2.setMaterielName(p.getMaterialName()); |
|
|
|
|
BasicdataFactoryCategoryEntity factoryCategoryEntity2 = basicdataFactoryCategoryClient.findEntityByMaterielName(entity2); |
|
|
|
|
if (Func.isEmpty(factoryCategoryEntity2)){ |
|
|
|
|
unitPrice = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
} |
|
|
|
|
if (!Func.isEmpty(priceDispatchAddClientVOS)&&Func.isNotEmpty(factoryCategoryEntity2)){ |
|
|
|
|
//获取单价
|
|
|
|
|
unitPrice = getUnitPrice(priceDispatchAddClientVOS,factoryCategoryEntity2,distributionAppAddvalueDTO); |
|
|
|
|
} |
|
|
|
|
List<DisStockListDetailEntity> detailEntities = distributionReservationMapper.selectInventoryListByReservation(distributionAppAddvalueDTO.getReservationId()); |
|
|
|
|
// boolean inventoryPackageFlag = detailEntities.stream().allMatch(pack -> !Func.equals(pack.getId(), p.getPackageId()));
|
|
|
|
|
boolean inventoryPackageFlag = detailEntities.stream().map(DisStockListDetailEntity::getId).collect(Collectors.toList()).contains(p.getPackageId()); |
|
|
|
|
if (!inventoryPackageFlag) { |
|
|
|
|
throw new RuntimeException("不属于该客户包件"); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case 3: |
|
|
|
|
BasicdataFactoryCategoryEntity entity3 = new BasicdataFactoryCategoryEntity(); |
|
|
|
|
entity3.setMaterielName(p.getMaterialName()); |
|
|
|
|
BasicdataFactoryCategoryEntity factoryCategoryEntity3 = basicdataFactoryCategoryClient.findEntityByCategoryName(entity3); |
|
|
|
|
if (Func.isEmpty(factoryCategoryEntity3)){ |
|
|
|
|
unitPrice = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
} |
|
|
|
|
if (!Func.isEmpty(priceDispatchAddClientVOS)&&Func.isNotEmpty(factoryCategoryEntity3)){ |
|
|
|
|
//获取单价
|
|
|
|
|
unitPrice = getUnitPrice(priceDispatchAddClientVOS,factoryCategoryEntity3,distributionAppAddvalueDTO); |
|
|
|
|
} |
|
|
|
|
List<DistributionParcelNumberDTO> distributionParcelNumberDTOS = distributionReservationMapper.selectZeroPackageListByReservationId(distributionAppAddvalueDTO.getReservationId()); |
|
|
|
|
// boolean zeroPackageFlag = distributionParcelNumberDTOS.stream().allMatch(pack -> !Func.equals(pack.getId(), p.getPackageId()));
|
|
|
|
|
boolean zeroPackageFlag = distributionParcelNumberDTOS.stream().map(DistributionParcelNumberDTO::getId).collect(Collectors.toList()).contains(p.getPackageId()); |
|
|
|
|
if (!zeroPackageFlag) { |
|
|
|
|
throw new RuntimeException("不属于该客户包件"); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
addvaluePackageEntity.setScanUserName(AuthUtil.getNickName()); |
|
|
|
|
addvaluePackageEntity.setUnitPrice(unitPrice); |
|
|
|
|
//计算收入
|
|
|
|
|
addvaluePackageEntity.setFee(unitPrice.multiply(BigDecimal.valueOf(p.getQuantity()))); |
|
|
|
|
addvaluePackageEntities.add(addvaluePackageEntity); |
|
|
|
|
totalFee.add(addvaluePackageEntity.getFee()); |
|
|
|
|
}); |
|
|
|
|
distributionAddvaluePackageService.saveBatch(addvaluePackageEntities); |
|
|
|
|
//最后进行该增值服务项的费用统计
|
|
|
|
|
distributionAddvalueDetailService.update(Wrappers.<DistributionAddvalueDetailEntity>update().lambda() |
|
|
|
|
.eq(DistributionAddvalueDetailEntity::getId,distributionAddvalueDetailEntity.getId()) |
|
|
|
|
.set(DistributionAddvalueDetailEntity::getFee,totalFee) |
|
|
|
|
); |
|
|
|
|
return Resp.scanSuccess("添加成功", "添加成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -311,6 +412,7 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
return Resp.scanFail("添加失败", "客户信息错误"); |
|
|
|
|
} |
|
|
|
|
// 上楼 超区 平移 搬运 分拣 专车
|
|
|
|
|
BigDecimal totalFee = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
switch (distributionAppAddvalueDTO.getAddvalueType()) { |
|
|
|
|
case "1": |
|
|
|
|
if (Func.isEmpty(distributionAppAddvalueDTO.getFloolNum())) { |
|
|
|
@ -318,6 +420,7 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
} else { |
|
|
|
|
distributionAddvalueDetailEntity.setFloolNum(distributionAppAddvalueDTO.getFloolNum()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
break; |
|
|
|
|
case "2": |
|
|
|
|
if (Func.isEmpty(distributionAppAddvalueDTO.getDistance())) { |
|
|
|
@ -325,6 +428,11 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
} else { |
|
|
|
|
distributionAddvalueDetailEntity.setDistance(distributionAppAddvalueDTO.getDistance()); |
|
|
|
|
} |
|
|
|
|
if (Func.isEmpty(distributionAppAddvalueDTO.getFee())){ |
|
|
|
|
return Resp.scanFail("添加失败", "请输入超区费用"); |
|
|
|
|
}else { |
|
|
|
|
totalFee.add(distributionAppAddvalueDTO.getFee()); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case "3": |
|
|
|
|
if (Func.isEmpty(distributionAppAddvalueDTO.getDistance())) { |
|
|
|
@ -333,36 +441,26 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
distributionAddvalueDetailEntity.setDistance(distributionAppAddvalueDTO.getDistance()); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
// case "4":
|
|
|
|
|
// case "5":
|
|
|
|
|
// if (Func.isEmpty(distributionAppAddvalueDTO.getNum())) {
|
|
|
|
|
// return Resp.scanFail("添加失败", "请输入件数");
|
|
|
|
|
// } else {
|
|
|
|
|
// distributionAddvalueDetailEntity.setNum(packageEntityList.stream().mapToInt(DistributionAddvaluePackageDTO::getQuantity).sum());
|
|
|
|
|
// }
|
|
|
|
|
// break;
|
|
|
|
|
// case "6":
|
|
|
|
|
// if (Func.isEmpty(distributionAppAddvalueDTO.getFee())) {
|
|
|
|
|
// return Resp.scanFail("添加失败", "请输入件数");
|
|
|
|
|
// } else {
|
|
|
|
|
// distributionAddvalueDetailEntity.setFee(distributionAppAddvalueDTO.getFee());
|
|
|
|
|
// }
|
|
|
|
|
// break;
|
|
|
|
|
// default:
|
|
|
|
|
// return Resp.scanFail("添加失败", "服务器正忙");
|
|
|
|
|
case "6": |
|
|
|
|
if (Func.isEmpty(distributionAppAddvalueDTO.getFee())){ |
|
|
|
|
return Resp.scanFail("添加失败", "请输入专车费用"); |
|
|
|
|
}else { |
|
|
|
|
totalFee.add(distributionAppAddvalueDTO.getFee()); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
int total = packageEntityList.stream().mapToInt(DistributionAddvaluePackageDTO::getQuantity).sum(); |
|
|
|
|
|
|
|
|
|
if ( total == 0) { |
|
|
|
|
if (total == 0) { |
|
|
|
|
return Resp.scanFail("添加失败", "包件数量错误"); |
|
|
|
|
} else { |
|
|
|
|
distributionAddvalueDetailEntity.setNum(packageEntityList.stream().mapToInt(DistributionAddvaluePackageDTO::getQuantity).sum()); |
|
|
|
|
} |
|
|
|
|
if (Func.isEmpty(distributionAppAddvalueDTO.getFee())) { |
|
|
|
|
return Resp.scanFail("添加失败", "请输入费用"); |
|
|
|
|
} else { |
|
|
|
|
distributionAddvalueDetailEntity.setFee(distributionAppAddvalueDTO.getFee()); |
|
|
|
|
} |
|
|
|
|
// if (Func.isEmpty(distributionAppAddvalueDTO.getFee())) {
|
|
|
|
|
// return Resp.scanFail("添加失败", "请输入费用");
|
|
|
|
|
// } else {
|
|
|
|
|
// distributionAddvalueDetailEntity.setFee(distributionAppAddvalueDTO.getFee());
|
|
|
|
|
// }
|
|
|
|
|
DistributionAddvalueEntity distributionAddvalueEntity = new DistributionAddvalueEntity(); |
|
|
|
|
distributionAddvalueEntity.setAddvalueId(distributionAppAddvalueDTO.getAddvalueType()); |
|
|
|
|
distributionAddvalueEntity.setCode(reservationEntity.getReservationCode()); |
|
|
|
@ -374,19 +472,42 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
this.save(distributionAddvalueEntity); |
|
|
|
|
distributionAddvalueDetailEntity.setAddvalueId(distributionAddvalueEntity.getId()); |
|
|
|
|
distributionAddvalueDetailEntity.setRecordType(2); |
|
|
|
|
// List<DistributionParcelListEntity> parcelListEntities = distributionReservationMapper.selectPackageListByReservationId(distributionAppAddvalueDTO.getReservationId());
|
|
|
|
|
if (reservationEntity.getReservationNum() + reservationEntity.getReservationStockListNum() == packageEntityList.size()) { |
|
|
|
|
distributionAddvalueDetailEntity.setRecordType(1); |
|
|
|
|
} |
|
|
|
|
distributionAddvalueDetailService.save(distributionAddvalueDetailEntity); |
|
|
|
|
// List<DistributionParcelListEntity> parcelListEntities = distributionReservationMapper.selectPackageListByReservationId(distributionAppAddvalueDTO.getReservationId());
|
|
|
|
|
// if (reservationEntity.getReservationNum() + reservationEntity.getReservationStockListNum() == packageEntityList.size()) {
|
|
|
|
|
// distributionAddvalueDetailEntity.setRecordType(1);
|
|
|
|
|
// }
|
|
|
|
|
List<DistributionAddvaluePackageEntity> addvaluePackageEntities = new ArrayList<>(); |
|
|
|
|
//查询客户下此类的增值服务
|
|
|
|
|
List<DistributionAddvaluePackageEntity> packageEntities = distributionAddvalueMapper.selectAddvaluePackageListByAddvalueType(distributionAppAddvalueDTO.getReservationId(), distributionAppAddvalueDTO.getAddvalueType()); |
|
|
|
|
Map<Long, DistributionAddvaluePackageEntity> addvaluePackageEntityMap = packageEntities.stream().collect(Collectors.toMap(DistributionAddvaluePackageEntity::getPackageId, Function.identity(), (k1, k2) -> k2)); |
|
|
|
|
packageDTOList.stream().forEach(p -> { |
|
|
|
|
if (Func.isEmpty(addvaluePackageEntityMap.get(p.getPackageId()))) { |
|
|
|
|
Integer conditions = p.getConditions(); |
|
|
|
|
BigDecimal unitPrice = null; |
|
|
|
|
//获取结算单价
|
|
|
|
|
List<PriceDispatchAddClientVO> priceDispatchAddClientVOS = basicdataPriceClient.dispatchAddPrice(BasicdatPriceApiVO.builder().clientId(p.getClientId().toString()).brandId(p.getBrandId().toString()).build()); |
|
|
|
|
if (Func.isEmpty(priceDispatchAddClientVOS)) { |
|
|
|
|
//此客户品牌下无单价信息
|
|
|
|
|
unitPrice = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
} |
|
|
|
|
switch (conditions) { |
|
|
|
|
case 1: |
|
|
|
|
//查询订制品结算品类
|
|
|
|
|
BasicdataFactoryCategoryEntity entity1 = new BasicdataFactoryCategoryEntity(); |
|
|
|
|
entity1.setFirsts(p.getFirsts()); |
|
|
|
|
entity1.setSeconds(p.getSecond()); |
|
|
|
|
entity1.setThirds(p.getThirdProduct()); |
|
|
|
|
entity1.setMaterielName(p.getMaterialName()); |
|
|
|
|
entity1.setBrandId(p.getBrandId()); |
|
|
|
|
BasicdataFactoryCategoryEntity factoryCategoryEntity1 = basicdataFactoryCategoryClient.findEntityByThreeCategory(entity1); |
|
|
|
|
if (Func.isEmpty(factoryCategoryEntity1)){ |
|
|
|
|
unitPrice = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
} |
|
|
|
|
if (!Func.isEmpty(priceDispatchAddClientVOS)&&Func.isNotEmpty(factoryCategoryEntity1)){ |
|
|
|
|
//获取单价
|
|
|
|
|
unitPrice = getUnitPrice(priceDispatchAddClientVOS,factoryCategoryEntity1,distributionAppAddvalueDTO); |
|
|
|
|
} |
|
|
|
|
//判定该包件是否属于该客户
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntities = distributionReservationMapper.selectPackageListByReservationId(distributionAppAddvalueDTO.getReservationId()); |
|
|
|
|
// boolean packageFlag = parcelListEntities.stream().allMatch(pack -> !Func.equals(pack.getId(), p.getPackageId()));
|
|
|
|
@ -396,6 +517,16 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case 2: |
|
|
|
|
BasicdataFactoryCategoryEntity entity2 = new BasicdataFactoryCategoryEntity(); |
|
|
|
|
entity2.setMaterielName(p.getMaterialName()); |
|
|
|
|
BasicdataFactoryCategoryEntity factoryCategoryEntity2 = basicdataFactoryCategoryClient.findEntityByMaterielName(entity2); |
|
|
|
|
if (Func.isEmpty(factoryCategoryEntity2)){ |
|
|
|
|
unitPrice = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
} |
|
|
|
|
if (!Func.isEmpty(priceDispatchAddClientVOS)&&Func.isNotEmpty(factoryCategoryEntity2)){ |
|
|
|
|
//获取单价
|
|
|
|
|
unitPrice = getUnitPrice(priceDispatchAddClientVOS,factoryCategoryEntity2,distributionAppAddvalueDTO); |
|
|
|
|
} |
|
|
|
|
List<DisStockListDetailEntity> detailEntities = distributionReservationMapper.selectInventoryListByReservation(distributionAppAddvalueDTO.getReservationId()); |
|
|
|
|
// boolean inventoryPackageFlag = detailEntities.stream().allMatch(pack -> !Func.equals(pack.getId(), p.getPackageId()));
|
|
|
|
|
boolean inventoryPackageFlag = detailEntities.stream().map(DisStockListDetailEntity::getId).collect(Collectors.toList()).contains(p.getPackageId()); |
|
|
|
@ -404,6 +535,16 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case 3: |
|
|
|
|
BasicdataFactoryCategoryEntity entity3 = new BasicdataFactoryCategoryEntity(); |
|
|
|
|
entity3.setMaterielName(p.getMaterialName()); |
|
|
|
|
BasicdataFactoryCategoryEntity factoryCategoryEntity3 = basicdataFactoryCategoryClient.findEntityByCategoryName(entity3); |
|
|
|
|
if (Func.isEmpty(factoryCategoryEntity3)){ |
|
|
|
|
unitPrice = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
} |
|
|
|
|
if (!Func.isEmpty(priceDispatchAddClientVOS)&&Func.isNotEmpty(factoryCategoryEntity3)){ |
|
|
|
|
//获取单价
|
|
|
|
|
unitPrice = getUnitPrice(priceDispatchAddClientVOS,factoryCategoryEntity3,distributionAppAddvalueDTO); |
|
|
|
|
} |
|
|
|
|
List<DistributionParcelNumberDTO> distributionParcelNumberDTOS = distributionReservationMapper.selectZeroPackageListByReservationId(distributionAppAddvalueDTO.getReservationId()); |
|
|
|
|
// boolean zeroPackageFlag = distributionParcelNumberDTOS.stream().allMatch(pack -> !Func.equals(pack.getId(), p.getPackageId()));
|
|
|
|
|
boolean zeroPackageFlag = distributionParcelNumberDTOS.stream().map(DistributionParcelNumberDTO::getId).collect(Collectors.toList()).contains(p.getPackageId()); |
|
|
|
@ -415,15 +556,75 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
|
|
|
|
|
p.setAddvalueDetailId(distributionAddvalueDetailEntity.getId()); |
|
|
|
|
DistributionAddvaluePackageEntity addvaluePackageEntity = Func.copy(p, DistributionAddvaluePackageEntity.class); |
|
|
|
|
if (Func.isNotEmpty(p.getZeroQuantity())){ |
|
|
|
|
assert addvaluePackageEntity != null; |
|
|
|
|
addvaluePackageEntity.setQuantity(p.getZeroQuantity()); |
|
|
|
|
if (Func.isNotEmpty(p.getZeroQuantity())) { |
|
|
|
|
assert addvaluePackageEntity != null; |
|
|
|
|
addvaluePackageEntity.setQuantity(p.getZeroQuantity()); |
|
|
|
|
} |
|
|
|
|
addvaluePackageEntity.setUnitPrice(unitPrice); |
|
|
|
|
addvaluePackageEntity.setFee(unitPrice.multiply(new BigDecimal(p.getQuantity()))); |
|
|
|
|
addvaluePackageEntity.setScanUserName(AuthUtil.getNickName()); |
|
|
|
|
addvaluePackageEntities.add(addvaluePackageEntity); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
distributionAddvaluePackageService.saveBatch(addvaluePackageEntities); |
|
|
|
|
return Resp.scanSuccess("添加成功", "添加成功"); |
|
|
|
|
if (!addvaluePackageEntities.isEmpty()) { |
|
|
|
|
addvaluePackageEntities.forEach(p ->{ |
|
|
|
|
totalFee.add(p.getFee()); |
|
|
|
|
}); |
|
|
|
|
distributionAddvalueDetailEntity.setFee(totalFee); |
|
|
|
|
distributionAddvalueDetailService.updateById(distributionAddvalueDetailEntity); |
|
|
|
|
distributionAddvaluePackageService.saveBatch(addvaluePackageEntities); |
|
|
|
|
return Resp.scanSuccess("添加成功", "添加成功"); |
|
|
|
|
}else { |
|
|
|
|
return Resp.scanFail("添加失败", "添加失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private BigDecimal getUnitPrice(List<PriceDispatchAddClientVO> priceDispatchAddClientVOS, BasicdataFactoryCategoryEntity factoryCategoryEntity, DistributionAppAddvalueDTO distributionAppAddvalueDTO) { |
|
|
|
|
|
|
|
|
|
List<PriceDispatchAddClientVO> collect = priceDispatchAddClientVOS.stream().filter(f -> f.getCategoryId().equals(factoryCategoryEntity.getId())).collect(Collectors.toList()); |
|
|
|
|
BigDecimal unitPrice = null; |
|
|
|
|
if (!collect.isEmpty()){ |
|
|
|
|
if (collect.size() > 1){ |
|
|
|
|
log.info("存在多个相同分类的单价CategoryId:{}",factoryCategoryEntity.getId()); |
|
|
|
|
} |
|
|
|
|
PriceDispatchAddClientVO priceDispatchAddClientVO = collect.get(0); |
|
|
|
|
|
|
|
|
|
switch (distributionAppAddvalueDTO.getAddvalueType()){ |
|
|
|
|
case "1": |
|
|
|
|
//获取上楼费用
|
|
|
|
|
//比对是否超过了楼层
|
|
|
|
|
if (priceDispatchAddClientVO.getDispatchStairsCarryingCharge() >= distributionAppAddvalueDTO.getFloolNum()) { |
|
|
|
|
unitPrice = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
}else { |
|
|
|
|
unitPrice = BigDecimal.valueOf(priceDispatchAddClientVO.getUpstairsDeliveryPrice()); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case "2": |
|
|
|
|
//获取超区公里数单价
|
|
|
|
|
unitPrice = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
break; |
|
|
|
|
case "3": |
|
|
|
|
//获取平移单价
|
|
|
|
|
unitPrice = BigDecimal.valueOf(priceDispatchAddClientVO.getRelocationPrice()); |
|
|
|
|
break; |
|
|
|
|
case "4": |
|
|
|
|
//获取搬运单价
|
|
|
|
|
unitPrice = BigDecimal.valueOf(priceDispatchAddClientVO.getHandlingPrice()); |
|
|
|
|
break; |
|
|
|
|
case "5": |
|
|
|
|
//获取搬运单价
|
|
|
|
|
unitPrice = BigDecimal.valueOf(priceDispatchAddClientVO.getSortPrice()); |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
|
log.info(">>>>>>>>>>>>>>对应客户未进行单价维护:{}",priceDispatchAddClientVO.getCategoryId()); |
|
|
|
|
unitPrice = new BigDecimal(BigInteger.ZERO); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
}else { |
|
|
|
|
return BigDecimal.ZERO; |
|
|
|
|
} |
|
|
|
|
return unitPrice; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -678,7 +879,7 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
distributionAddvalueMapper.deleteAddvalue(distributionAppAddvalueDTO.getReservationId(), distributionAppAddvalueDTO.getAddvalueType()); |
|
|
|
|
} |
|
|
|
|
packageIds.forEach(id -> { |
|
|
|
|
distributionAddvaluePackageMapper.deleteAddvaluePackageByDetailId(distributionAppAddvalueDTO.getReservationId(), id,distributionAppAddvalueDTO.getAddvalueDetailId()); |
|
|
|
|
distributionAddvaluePackageMapper.deleteAddvaluePackageByDetailId(distributionAppAddvalueDTO.getReservationId(), id, distributionAppAddvalueDTO.getAddvalueDetailId()); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
log.error("###########该包件不存在增值服务项包件列表中"); |
|
|
|
@ -708,15 +909,27 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
.map(DistributionAddvaluePackageEntity::getPackageId) |
|
|
|
|
.collect(Collectors.toList()).contains(p)) |
|
|
|
|
.collect(Collectors.toList()); |
|
|
|
|
if (Func.isNotEmpty(zeroPackageIds)){ |
|
|
|
|
if (Func.isNotEmpty(zeroPackageIds)) { |
|
|
|
|
increasePackage.addAll(zeroPackageIds); |
|
|
|
|
} |
|
|
|
|
if (increasePackage.size() == 0) { |
|
|
|
|
//添加包件都已经存在在增值服务列表
|
|
|
|
|
return R.fail("包件已存在"); |
|
|
|
|
} |
|
|
|
|
//查询客户信息
|
|
|
|
|
boolean flag = packageEntityList.stream().anyMatch(p -> p.getClientId() != null); |
|
|
|
|
if (flag) { |
|
|
|
|
String str = packageEntityList.stream().filter(p -> p.getClientId() != null).map(DistributionAddvaluePackageDTO::getOrderPackageCode).collect(Collectors.joining(",")); |
|
|
|
|
return R.fail(str + "无客户信息"); |
|
|
|
|
} |
|
|
|
|
List<Long> clientIds = packageEntityList.stream().map(DistributionAddvaluePackageDTO::getClientId).distinct().collect(Collectors.toList()); |
|
|
|
|
String string = verifyClient(clientIds, packageEntityList); |
|
|
|
|
if (Strings.isBlank(string)) { |
|
|
|
|
log.info("计算成本失败>>>>>>>>>:{}", string); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (increasePackage.size() > 0) { |
|
|
|
|
|
|
|
|
|
//统计该项增值服务包件数量
|
|
|
|
|
int num = detailEntity.getNum() + increasePackage.size(); |
|
|
|
|
detailEntity.setNum(num); |
|
|
|
@ -763,11 +976,23 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
detailEntity.setFee(distributionAppAddvalueDTO.getFee()); |
|
|
|
|
detailEntity.setNum(num); |
|
|
|
|
distributionAddvalueDetailMapper.updateById(detailEntity); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//查询价格模板
|
|
|
|
|
//basicdataPriceClient.dispatchAddPrice();
|
|
|
|
|
|
|
|
|
|
//添加新的包件信息
|
|
|
|
|
increasePackage.forEach(ip -> { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (Func.isNotEmpty(packageDTOMap.get(ip))) { |
|
|
|
|
//新增包件
|
|
|
|
|
DistributionAddvaluePackageDTO distributionAddvaluePackageDTO = packageDTOMap.get(ip); |
|
|
|
|
List<PriceDispatchAddClientVO> priceDispatchAddClientVOS = basicdataPriceClient.dispatchAddPrice(BasicdatPriceApiVO.builder().clientId(distributionAddvaluePackageDTO.getClientId().toString()).brandId(distributionAddvaluePackageDTO.getClientId().toString()).build()); |
|
|
|
|
if (!priceDispatchAddClientVOS.isEmpty()) { |
|
|
|
|
//TODO 结算品类
|
|
|
|
|
} |
|
|
|
|
//查询价格模板
|
|
|
|
|
DistributionAddvaluePackageEntity distributionAddvaluePackageEntity = distributionAddvaluePackageMapper.selectOne(Wrappers.<DistributionAddvaluePackageEntity>query().lambda() |
|
|
|
|
.eq(DistributionAddvaluePackageEntity::getReservationId, distributionAddvaluePackageDTO.getReservationId()) |
|
|
|
|
.eq(DistributionAddvaluePackageEntity::getPackageId, distributionAddvaluePackageDTO.getPackageId()) |
|
|
|
@ -776,17 +1001,17 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
if (distributionAddvaluePackageDTO.getConditions() == 3) { |
|
|
|
|
if (Func.isEmpty(distributionAddvaluePackageEntity)){ |
|
|
|
|
if (Func.isEmpty(distributionAddvaluePackageEntity)) { |
|
|
|
|
//新增零担
|
|
|
|
|
// DistributionAddvaluePackageEntity zeroAddvaluePackageEntity = new DistributionAddvaluePackageEntity();
|
|
|
|
|
if (distributionAddvaluePackageDTO.getZeroQuantity() > 0){ |
|
|
|
|
if (distributionAddvaluePackageDTO.getZeroQuantity() > 0) { |
|
|
|
|
DistributionAddvaluePackageEntity zeroAddvaluePackageEntity = Func.copy(distributionAddvaluePackageDTO, DistributionAddvaluePackageEntity.class); |
|
|
|
|
distributionAddvaluePackageEntity.setQuantity(distributionAddvaluePackageDTO.getZeroQuantity()); |
|
|
|
|
distributionAddvaluePackageService.updateById(zeroAddvaluePackageEntity); |
|
|
|
|
}else { |
|
|
|
|
} else { |
|
|
|
|
log.error("###############零担品类录入数量0:{}", distributionAddvaluePackageDTO.getPackageId()); |
|
|
|
|
} |
|
|
|
|
}else { |
|
|
|
|
} else { |
|
|
|
|
if (distributionAddvaluePackageDTO.getZeroQuantity() > 0) { |
|
|
|
|
distributionAddvaluePackageEntity.setQuantity(distributionAddvaluePackageDTO.getZeroQuantity()); |
|
|
|
|
distributionAddvaluePackageService.updateById(distributionAddvaluePackageEntity); |
|
|
|
@ -795,6 +1020,7 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
DistributionAddvaluePackageEntity addvaluePackageEntity = new DistributionAddvaluePackageEntity(); |
|
|
|
|
addvaluePackageEntity.setAddvalueDetailId(distributionAddvaluePackageDTO.getAddvalueDetailId()); |
|
|
|
|
addvaluePackageEntity.setStockArticleId(distributionAddvaluePackageDTO.getStockArticleId()); |
|
|
|
@ -825,6 +1051,30 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
return R.status(true); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private String verifyClient(List<Long> clientIds, List<DistributionAddvaluePackageDTO> packageEntityList) { |
|
|
|
|
if (!clientIds.isEmpty()) { |
|
|
|
|
//校验客户信息
|
|
|
|
|
List<BasicdataClientEntity> basicdataClientEntityList = basicdataClientClient.findEntityByIds(clientIds); |
|
|
|
|
if (!basicdataClientEntityList.isEmpty()) { |
|
|
|
|
//校验客户数量是否和统计一致,否则存在异常客户信息
|
|
|
|
|
if (!Objects.equals(clientIds.size(), basicdataClientEntityList.size())) { |
|
|
|
|
String collect = clientIds.stream().filter(f -> !basicdataClientEntityList.stream().map(BasicdataClientEntity::getId).collect(Collectors.toList()).contains(f)).map(String::valueOf).collect(Collectors.joining(",")); |
|
|
|
|
log.error("客户信息异常,客户ID:{}", collect); |
|
|
|
|
String unorderPackageCode = packageEntityList.stream() |
|
|
|
|
.filter(f -> clientIds.stream().filter(m -> !basicdataClientEntityList.stream() |
|
|
|
|
.map(BasicdataClientEntity::getId) |
|
|
|
|
.collect(Collectors.toList()) |
|
|
|
|
.contains(m)) |
|
|
|
|
.collect(Collectors.toList()) |
|
|
|
|
.contains(f.getClientId())) |
|
|
|
|
.map(DistributionAddvaluePackageDTO::getOrderPackageCode) |
|
|
|
|
.collect(Collectors.joining(",")); |
|
|
|
|
return unorderPackageCode + "客户信息异常"; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// if (Func.isEmpty(detailEntity)) {
|
|
|
|
@ -835,7 +1085,7 @@ public class DistributionAddvalueServiceImpl extends BaseServiceImpl<Distributio
|
|
|
|
|
// String addvalueType = distributionAppAddvalueDTO.getAddvalueType();
|
|
|
|
|
//
|
|
|
|
|
// distributionAddvalueDetailMapper.updateById(detailEntity);
|
|
|
|
|
//查询出原来的包件信息
|
|
|
|
|
//查询出原来的包件信息
|
|
|
|
|
// DistributionAddvalueVO addvalueVO = distributionAddvalueMapper.selectReservationAddvalue(distributionAppAddvalueDTO.getReservationId(), addvalueType);
|
|
|
|
|
// String packageListIds = addvalueVO.getPackageListIds();
|
|
|
|
|
// if (Func.isEmpty(packageListIds)) {
|
|
|
|
|