Commit 107ea8c2 authored by wdy's avatar wdy

Merge branch 'wangdingyi' into 'dev'

数据统计

See merge request !367
parents 327b3b4c 28e4f3ef
......@@ -871,6 +871,7 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task>implements Tas
Integer unprocessedNum = 0;
if (statisticsVOList != null) {
for (CaseStatisticsVO vo : statisticsVOList) {
// 忽略
if (Objects.equals(vo.getStatus(), "IGNORED")) {
......@@ -902,6 +903,8 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task>implements Tas
response.setTestDetailsPass(num.setScale(1,BigDecimal.ROUND_UP).doubleValue());
}
}
// 合规维度
if (Objects.equals(str, "compliance")) {
// 测试用例合计
......@@ -915,6 +918,7 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task>implements Tas
Integer unprocessedNum = 0;
if (statisticsVOList != null) {
for (CaseStatisticsVO vo : statisticsVOList) {
// 忽略
if (Objects.equals(vo.getStatus(), "IGNORED")) {
......@@ -945,6 +949,8 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task>implements Tas
BigDecimal num = new BigDecimal(((double) response.getTestStandardsPassNum() / response.getTestStandards()) * 100);
response.setTestStandardsPass(num.setScale(1,BigDecimal.ROUND_UP).doubleValue());
}
}
}
}
......
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