Merge branch dev/story-75272 of zentao/zentaopms (#9276)

This commit is contained in:
刘刚
2025-06-09 15:13:33 +08:00
committed by Gitfox
@@ -0,0 +1,42 @@
<?php
/**
* 按执行统计的已修复Bug数。
* Count of fixed bug in execution.
*
* 范围:execution
* 对象:bug
* 目的:scale
* 度量名称:按执行统计的已修复Bug数
* 单位:个
* 描述:按执行统计的已修复Bug数是指解决方案为已解决并且状态为已关闭的Bug数量。这个度量项反映了执行解决的问题数量。已修复Bug数的可以评估开发团队在Bug解决方面的工作效率。
* 定义:执行中Bug的个数求和;解决方案为已解决;状态为已关闭;过滤已删除的Bug;过滤已删除的执行;
*
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
* @author Zemei Wang <wangzemei@easycorp.ltd>
* @package
* @uses func
* @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
* @Link https://www.zentao.net
*/
class count_of_fixed_bug_in_execution extends baseCalc
{
public $dataset = 'getExecutionBugs';
public $fieldList = array('t1.execution', 't1.status', 't1.resolution');
public $result = array();
public function calculate($data)
{
$execution = $data->execution;
if(!isset($this->result[$execution])) $this->result[$execution] = 0;
if($data->status == 'closed' and $data->resolution == 'fixed') $this->result[$execution] += 1;
}
public function getResult($options = null)
{
$records = $this->getRecords(array('execution', 'value'));
return $this->filterByOptions($records, $options);
}
}