This commit is contained in:
jing's 2023-12-27 14:50:27 +08:00
parent ea8f6f47d4
commit e4e4dca10e
1 changed files with 4 additions and 1 deletions

View File

@ -1000,7 +1000,10 @@ public class BomNewEbomParentService extends ServiceImpl<BomNewEbomParentMapper,
eBomDel.classifyBom();
if (CollectionUtil.isNotEmpty(eBomDel.getDelEBom())) {
this.getBaseMapper().delBatch(eBomDel.getDelEBom().stream().map(BomNewEbomParentVO::getBomRowId).collect(Collectors.toList()));
//取bom信息删除
this.getBaseMapper().delBatch(eBomDel.getDelEBom().stream()
.map(BomNewEbomParentVO::getBomRowId)
.collect(Collectors.toList()));
}