diff --git a/module/metric/calc/execution/rate/rate_of_developed_story_in_execution.php b/module/metric/calc/execution/rate/rate_of_developed_story_in_execution.php index 4fecb85102..53be5610d1 100755 --- a/module/metric/calc/execution/rate/rate_of_developed_story_in_execution.php +++ b/module/metric/calc/execution/rate/rate_of_developed_story_in_execution.php @@ -39,7 +39,7 @@ class rate_of_developed_story_in_execution extends baseCalc $this->result[$execution]['all'] = 0; } - if(!in_array($stage, array('developed', 'testing', 'tested', 'verified', 'delivering', 'delivered', 'released')) && $closedReason == 'done') $this->result[$execution]['developed'] += 1; + if(!in_array($stage, array('developed', 'testing', 'tested', 'verified', 'rejected', 'delivering', 'delivered', 'released')) && $closedReason == 'done') $this->result[$execution]['developed'] += 1; $this->result[$execution]['all'] += 1; }