Commit c422a57c by dengwei

指标积分规则管理,新增公式积分添加YYCD原烟纯度公式

parent 092bfafa
......@@ -44,6 +44,8 @@ public class IndScorecard {
private Double bestIndScore;//最佳指标分
private Double worstIndScore;//最差指标分
private String otherCalFormula;//其他计算公式
// 2023年2月7日17:20:32 -- 邓威
private String otherCalFormulaDesc;//其他计算公式详情
//改善提升
private String isIncluScore;//是否纳入单位计分 0:不纳入 1:纳入
private Double limitScore;//上限分数
......
......@@ -186,6 +186,10 @@ public class DriveIndDefService {
public void delete(List<String> indIds) throws Exception{
driveIndDefMapper.deleteByIdIn(indIds);
driveIndDefVersionService.updateIsDeleteStatusByIndIdIn(indIds, "1");//标识已删除
// 遍历所有的指标id,删除指标关联的组内指标
for (String indId : indIds) {
taskRuleIndicatorMapper.deleteByParentIndId(indId);
}
}
public Map<String,Object> getByPageAndKeyword(Integer catalogId,String keyword,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment