| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- * 按项目统计的未开始执行数。
- * Count wait execution in project.
- *
- * 范围:project
- * 对象:execution
- * 目的:scale
- * 度量名称:按项目统计的未开始执行数
- * 单位:个
- * 描述:按项目统计的未开始执行数表示在项目中未开始的执行数,可以用来了解未开始的执行数量。
- * 定义:项目的执行个数求和;状态为未开始;过滤已删除的执行;过滤已删除的项目;
- *
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
- * @author qixinzhi <qixinzhi@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_wait_execution_in_project extends baseCalc
- {
- public $dataset = 'getExecutions';
- public $fieldList = array('t1.project', 't1.status');
- public $result = array();
- public function calculate($row)
- {
- $project = $row->project;
- $status = $row->status;
- if(!isset($this->result[$project])) $this->result[$project] = 0;
- if($status == 'wait') $this->result[$project] += 1;
- }
- public function getResult($options = array())
- {
- $records = $this->getRecords(array('project', 'value'));
- return $this->filterByOptions($records, $options);
- }
- }
|