From 482500ec0c87ba55d12eb04b3fe94fe109c0b2cb Mon Sep 17 00:00:00 2001 From: wangzemei Date: Wed, 11 Jun 2025 10:23:58 +0800 Subject: [PATCH] + [task#144636] add the count_of_case_in_type_in_execution func. --- .../scale/count_of_case_in_type_in_execution.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 module/metric/calc/execution/scale/count_of_case_in_type_in_execution.php diff --git a/module/metric/calc/execution/scale/count_of_case_in_type_in_execution.php b/module/metric/calc/execution/scale/count_of_case_in_type_in_execution.php new file mode 100644 index 0000000000..93660d96a6 --- /dev/null +++ b/module/metric/calc/execution/scale/count_of_case_in_type_in_execution.php @@ -0,0 +1,15 @@ +result[$row->type])) $this->result[$row->type] = array(); + $this->result[$row->type][$row->id] = $row->id; + } +}