|
@@ -1456,7 +1456,11 @@ public class FormulaServiceImpl extends BaseServiceImpl<FormulaMapper, Formula>
|
|
|
tec.getKeyMappers().removeIf(e -> removeIds.contains(e.getPkId()));
|
|
|
/*同时tableAll里也要删除*/
|
|
|
tec.getTableAll().removeIf(e -> removeIds.contains(e.getPKeyId()));
|
|
|
- this.wbsTreeContractMapper.deleteByIds(removeIds);
|
|
|
+ String sys_isonline = ParamCache.getValue(CommonConstant.SYS_ISONLINE);
|
|
|
+ //2025-04-17 需求更改 甬台温不需要删除
|
|
|
+ if(!"20".equals(sys_isonline)){
|
|
|
+ this.wbsTreeContractMapper.deleteByIds(removeIds);
|
|
|
+ }
|
|
|
/*this.wbsTreeContractMapper.deleteLogicByIds(removeIds);*/
|
|
|
}
|
|
|
}
|