* [bug#63523] fix the metric of developed story.

This commit is contained in:
wangzemei
2025-06-20 15:27:58 +08:00
parent 28592c41a7
commit 6d69affa07
@@ -35,7 +35,7 @@ class count_of_developed_story_in_execution extends baseCalc
if(!isset($this->result[$execution])) $this->result[$execution] = 0;
if(in_array($stage, array('developed', 'testing', 'tested', 'verified', 'delivering', 'delivered', 'released'))) $this->result[$execution] += 1;
if($closedReason) $this->result[$execution] += 1;
if($closedReason == 'done') $this->result[$execution] += 1;
}
public function getResult($options = array())