count_of_monthly_closed_project.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /**
  3. * 按系统统计的月度关闭项目数。
  4. * Count of monthly closed project.
  5. *
  6. * 范围:system
  7. * 对象:project
  8. * 目的:scale
  9. * 度量名称:按系统统计的月度关闭项目数
  10. * 单位:个
  11. * 描述:按系统统计的年度关闭项目数是指在某月度关闭的项目数量。这个度量项可以帮助团队了解某年度项目的执行情况和成果,并进行项目交付能力的评估。较高的年度关闭项目数表明团队在项目交付方面具有较高的效率。
  12. * 定义:所有的项目个数求和;关闭时间为某年某月;过滤已删除的项目;
  13. *
  14. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
  15. * @author zhouxin <zhouxin@easycorp.ltd>
  16. * @package
  17. * @uses func
  18. * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  19. * @Link https://www.zentao.net
  20. */
  21. class count_of_monthly_closed_project extends baseCalc
  22. {
  23. public $dataset = 'getAllProjects';
  24. public $fieldList = array('t1.status', 't1.closedDate');
  25. public $result = array();
  26. public function calculate($row)
  27. {
  28. if($row->status != 'closed') return false;
  29. $year = $this->getYear($row->closedDate);
  30. if(!$year) return false;
  31. $month = substr($row->closedDate, 5, 2);
  32. if(!isset($this->result[$year])) $this->result[$year] = array();
  33. if(!isset($this->result[$year][$month])) $this->result[$year][$month] = 0;
  34. $this->result[$year][$month] += 1;
  35. }
  36. public function getResult($options = array())
  37. {
  38. $records = array();
  39. foreach($this->result as $year => $months)
  40. {
  41. foreach($months as $month => $value)
  42. {
  43. $records[] = array('year' => $year, 'month' => $month, 'value' => $value);
  44. }
  45. }
  46. return $this->filterByOptions($records, $options);
  47. }
  48. }