+ [task#144597,doing,0.4h] add count_of_story_in_type_in_product metric.

This commit is contained in:
caoyanyi
2025-06-13 16:19:13 +08:00
parent 6b5dab932a
commit eca1d0969b
@@ -0,0 +1,50 @@
<?php
/**
* 按类型统计的需求数。
* Count of story in type
*
* 范围:type
* 对象:story
* 目的:scale
* 度量名称:按类型统计的需求数
* 单位:个
* 描述:按类型统计的需求数
* 定义:按类型统计的需求数
*
* @copyright Copyright 2009-2025 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
* @author Yanyi Cao <caoyanyi@chandao.com>
* @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_story_in_type_in_product extends baseCalc
{
public $dataset = '';
public $fieldList = array();
public $result = array();
public function calculate($row)
{
if(!isset($this->result[$row->type])) $this->result[$row->type] = array();
$this->result[$row->type][$row->id] = $row->id;
}
public function getResult($options = array())
{
foreach($this->result as $type => $stories)
{
if(!is_array($stories))
{
unset($this->result[$type]);
continue;
}
$this->result[$type] = count($stories);
}
$records = $this->getRecords(array('type', 'value'));
return $this->filterByOptions($records, $options);
}
}