* Finish task #98390,98391.

This commit is contained in:
zhouxin
2023-07-26 17:26:36 +08:00
parent 54af5cae85
commit 73dd7fe4e7
2 changed files with 24 additions and 22 deletions
@@ -10,14 +10,14 @@
* 单位:个
* 描述:按全局统计的完成项目中延期完成项目数是指超过预定计划时间而关闭的项目数量。这个度量项可以帮助团队评估项目的时间管理和执行能力,并识别延期原因并采取适当措施。较高的延期完成项目数可能需要团队关注项目计划和资源安排的问题。
* 定义:所有的项目个数求和
状态为已关闭
完成日期>项目启动时的计划截止日期
过滤已删除的项目
* 状态为已关闭
* 完成日期>项目启动时的计划截止日期
* 过滤已删除的项目
* 度量库:
* 收集方式:realtime
*
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
* @author qixinzhi <qixinzhi@easycorp.ltd>
* @author zhouxin <zhouxin@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)
@@ -25,20 +25,21 @@
*/
class count_of_delayed_finished_project_which_finished extends baseCalc
{
public $dataset = null;
public $dataset = 'getAllProjects';
public $fieldList = array();
public $fieldList = array('status', 'closedDate', 'firstEnd');
//public funtion getStatement($dao)
//{
//}
public $result = 0;
public function calculate($data)
public function calculate($row)
{
if(empty($row->closedDate) or empty($row->firstEnd)) return false;
if($row->status == 'closed' and $row->closedDate <= $row->firstEnd) $this->result ++;
}
public function getResult($options = array())
{
return $this->filterByOptions($this->result, $options);
}
}
}
@@ -10,14 +10,14 @@
* 单位:个
* 描述:按全局统计的完成项目中按期关闭项目数是指按预定计划时间关闭的项目数量。这个度量项可以帮助团队评估项目的时间管理和执行能力。较高的按期关闭项目数表示团队能够按时交付项目,有助于保持项目进展和客户满意度。
* 定义:所有的项目个数求和
状态为已关闭
完成日期<=项目启动时的计划截止日期
过滤已删除的项目
* 状态为已关闭
* 完成日期<=项目启动时的计划截止日期
* 过滤已删除的项目
* 度量库:
* 收集方式:realtime
*
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
* @author qixinzhi <qixinzhi@easycorp.ltd>
* @author zhouxin <zhouxin@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)
@@ -25,20 +25,21 @@
*/
class count_of_undelayed_finished_project_which_finished extends baseCalc
{
public $dataset = null;
public $dataset = 'getAllProjects';
public $fieldList = array();
public $fieldList = array('status', 'closedDate', 'firstEnd');
//public funtion getStatement($dao)
//{
//}
public $result = 0;
public function calculate($data)
public function calculate($row)
{
if(empty($row->closedDate) or empty($row->firstEnd)) return false;
if($row->status == 'closed' and $row->closedDate <= $row->firstEnd) $this->result ++;
}
public function getResult($options = array())
{
return $this->filterByOptions($this->result, $options);
}
}
}