|
|
@ -2090,55 +2090,51 @@ 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) ->{ |
|
|
|
while (distributionPrintEntityListIterator.hasNext()){ |
|
|
|
|
|
|
|
for (BillLadingAppDTO.Print q : uid) { |
|
|
|
List<BillLadingAppDTO.Print> aid = v.stream().filter(i -> ObjectUtils.isNull(i.getId())).collect(Collectors.toList());//添加的图片
|
|
|
|
DistributionPrintEntity next = distributionPrintEntityListIterator.next(); |
|
|
|
addList.addAll(aid); |
|
|
|
if(q.getId().toString().equals(next.getId().toString())){ |
|
|
|
|
|
|
|
distributionPrintEntityListIterator.remove(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
List<BillLadingAppDTO.Print> uid = v.stream().filter(i -> ObjectUtils.isNotNull(i.getId())).collect(Collectors.toList()); //保存的图片
|
|
|
|
} |
|
|
|
uid.forEach(q ->{ |
|
|
|
} |
|
|
|
//处理不需要的图片
|
|
|
|
//清除需要删除的图片
|
|
|
|
while (distributionPrintEntityListIterator.hasNext()){ |
|
|
|
|
|
|
|
DistributionPrintEntity next = distributionPrintEntityListIterator.next(); |
|
|
|
|
|
|
|
if(q.getId().equals(next.getId())){ |
|
|
|
|
|
|
|
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<>(); |
|
|
|
//新增
|
|
|
|
billLadingAppDTO.getPrintList().forEach(print -> { |
|
|
|
List<DistributionPrintEntity> list2 = new ArrayList<>(); |
|
|
|
DistributionPrintEntity distributionPrintEntity = new DistributionPrintEntity(); |
|
|
|
aid.forEach(print -> { |
|
|
|
distributionPrintEntity.setBillLadingId(billLadingAppDTO.getBillLadingId()); |
|
|
|
DistributionPrintEntity distributionPrintEntity = new DistributionPrintEntity(); |
|
|
|
distributionPrintEntity.setGenre(Integer.parseInt(print.getState())); |
|
|
|
distributionPrintEntity.setBillLadingId(billLadingAppDTO.getBillLadingId()); |
|
|
|
distributionPrintEntity.setSite(print.getUrl()); |
|
|
|
distributionPrintEntity.setGenre(Integer.parseInt(print.getState())); |
|
|
|
distributionPrintEntity.setSiteName(print.getName()); |
|
|
|
distributionPrintEntity.setSite(print.getUrl()); |
|
|
|
list2.add(distributionPrintEntity); |
|
|
|
distributionPrintEntity.setSiteName(print.getName()); |
|
|
|
}); |
|
|
|
list2.add(distributionPrintEntity); |
|
|
|
|
|
|
|
}); |
|
|
|
return R.status(distributionPrintService.saveBatch(list2)); |
|
|
|
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); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|