Browse Source

修噶PDA自提图片提交删除

single_db
caoyizhong 1 year ago
parent
commit
64c91fc492
  1. 42
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistrilbutionBillLadingServiceImpl.java

42
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistrilbutionBillLadingServiceImpl.java

@ -2090,46 +2090,33 @@ public class DistrilbutionBillLadingServiceImpl extends BaseServiceImpl<Distrilb
*/ */
@Override @Override
public R updateReceivedImage(BillLadingAppDTO billLadingAppDTO) { public R updateReceivedImage(BillLadingAppDTO billLadingAppDTO) {
//修改数据
if(ObjectUtils.isNotNull(billLadingAppDTO.getRemark())){
DistrilbutionBillLadingEntity billLadingEntity = new DistrilbutionBillLadingEntity();
billLadingEntity.setId(billLadingAppDTO.getBillLadingId());
billLadingEntity.setRemark(billLadingAppDTO.getRemark());
baseMapper.updateById(billLadingEntity);
}
//查询全部的图片 //查询全部的图片
List<DistributionPrintEntity> printEntityList = distributionPrintService.list(Wrappers.<DistributionPrintEntity>query().lambda() List<DistributionPrintEntity> printEntityList = distributionPrintService.list(Wrappers.<DistributionPrintEntity>query().lambda()
.eq(DistributionPrintEntity::getBillLadingId, billLadingAppDTO.getBillLadingId()) .eq(DistributionPrintEntity::getBillLadingId, billLadingAppDTO.getBillLadingId())
); );
List<BillLadingAppDTO.Print> addList = new ArrayList<>(); //添加的图片
ListIterator<DistributionPrintEntity> distributionPrintEntityListIterator = printEntityList.listIterator(); ListIterator<DistributionPrintEntity> distributionPrintEntityListIterator = printEntityList.listIterator();
List<BillLadingAppDTO.Print> aid = billLadingAppDTO.getPrintList().stream().filter(i -> ObjectUtils.isNull(i.getId())).collect(Collectors.toList());//添加的图片
List<BillLadingAppDTO.Print> uid = billLadingAppDTO.getPrintList().stream().filter(i -> ObjectUtils.isNotNull(i.getId())).collect(Collectors.toList()); //保存的图片
//添加图片 //添加图片
billLadingAppDTO.getPrintList().stream().collect(Collectors.groupingBy(BillLadingAppDTO.Print::getState))
.forEach((k,v) ->{
List<BillLadingAppDTO.Print> aid = v.stream().filter(i -> ObjectUtils.isNull(i.getId())).collect(Collectors.toList());//添加的图片
addList.addAll(aid);
List<BillLadingAppDTO.Print> uid = v.stream().filter(i -> ObjectUtils.isNotNull(i.getId())).collect(Collectors.toList()); //保存的图片
uid.forEach(q ->{
//处理不需要的图片 //处理不需要的图片
while (distributionPrintEntityListIterator.hasNext()){ while (distributionPrintEntityListIterator.hasNext()){
for (BillLadingAppDTO.Print q : uid) {
DistributionPrintEntity next = distributionPrintEntityListIterator.next(); DistributionPrintEntity next = distributionPrintEntityListIterator.next();
if(q.getId().equals(next.getId())){ if(q.getId().toString().equals(next.getId().toString())){
distributionPrintEntityListIterator.remove(); distributionPrintEntityListIterator.remove();
} }
}
} }
});
});
//清除需要删除的图片 //清除需要删除的图片
if(!printEntityList.isEmpty()){ if(!printEntityList.isEmpty()){
List<Long> collect = printEntityList.stream().map(DistributionPrintEntity::getId).collect(Collectors.toList()); List<Long> collect = printEntityList.stream().map(DistributionPrintEntity::getId).collect(Collectors.toList());
distributionPrintService.deleteLogic(collect); distributionPrintService.deleteLogic(collect);
} }
if(!aid.isEmpty()){
//新增 //新增
List<DistributionPrintEntity> list2 = new ArrayList<>(); List<DistributionPrintEntity> list2 = new ArrayList<>();
billLadingAppDTO.getPrintList().forEach(print -> { aid.forEach(print -> {
DistributionPrintEntity distributionPrintEntity = new DistributionPrintEntity(); DistributionPrintEntity distributionPrintEntity = new DistributionPrintEntity();
distributionPrintEntity.setBillLadingId(billLadingAppDTO.getBillLadingId()); distributionPrintEntity.setBillLadingId(billLadingAppDTO.getBillLadingId());
distributionPrintEntity.setGenre(Integer.parseInt(print.getState())); distributionPrintEntity.setGenre(Integer.parseInt(print.getState()));
@ -2137,8 +2124,17 @@ public class DistrilbutionBillLadingServiceImpl extends BaseServiceImpl<Distrilb
distributionPrintEntity.setSiteName(print.getName()); distributionPrintEntity.setSiteName(print.getName());
list2.add(distributionPrintEntity); list2.add(distributionPrintEntity);
}); });
distributionPrintService.saveBatch(list2);
return R.status(distributionPrintService.saveBatch(list2)); }
//修改数据
if(ObjectUtils.isNotNull(billLadingAppDTO.getRemark())){
DistrilbutionBillLadingEntity billLadingEntity = new DistrilbutionBillLadingEntity();
billLadingEntity.setId(billLadingAppDTO.getBillLadingId());
billLadingEntity.setRemark(billLadingAppDTO.getRemark());
baseMapper.updateById(billLadingEntity);
return R.status(true);
}
return R.status(false);
} }
/** /**

Loading…
Cancel
Save