* Finish task #73470.

This commit is contained in:
wangyuting2
2022-10-26 07:01:57 +00:00
parent 2651502b2c
commit f8f329ec94
19 changed files with 285 additions and 8 deletions
+2 -2
View File
@@ -917,7 +917,7 @@ class customModel extends model
$function = 'has' . ucfirst($feature) . 'Data';
if(!$this->$function()) $disabledFeatures .= "$feature,";
}
$disabledFeatures .= 'scrumMeasrecord,track';
$disabledFeatures .= 'scrumMeasrecord,productTrack';
}
$disabledFeatures = rtrim($disabledFeatures, ',');
@@ -932,7 +932,7 @@ class customModel extends model
* @access public
* @return int
*/
public function hasURStoryData()
public function hasProductURStoryData()
{
return $this->dao->select('*')->from(TABLE_STORY)->where('type')->eq('requirement')->andWhere('deleted')->eq('0')->count();
}