* finish task #4901.
This commit is contained in:
+12
-12
@@ -1973,7 +1973,7 @@ class taskModel extends model
|
||||
* @access public
|
||||
* @return array
|
||||
*/
|
||||
public function getDataOftasksPerProject()
|
||||
public function getDataOfTasksPerProject()
|
||||
{
|
||||
$tasks = $this->dao->select('id,project')->from(TABLE_TASK)->alias('t1')
|
||||
->where($this->reportCondition())
|
||||
@@ -1997,7 +1997,7 @@ class taskModel extends model
|
||||
* @access public
|
||||
* @return array
|
||||
*/
|
||||
public function getDataOftasksPerModule()
|
||||
public function getDataOfTasksPerModule()
|
||||
{
|
||||
$tasks = $this->dao->select('id,module')->from(TABLE_TASK)->alias('t1')
|
||||
->where($this->reportCondition())
|
||||
@@ -2021,7 +2021,7 @@ class taskModel extends model
|
||||
* @access public
|
||||
* @return array
|
||||
*/
|
||||
public function getDataOftasksPerAssignedTo()
|
||||
public function getDataOfTasksPerAssignedTo()
|
||||
{
|
||||
$tasks = $this->dao->select('id,assignedTo')->from(TABLE_TASK)->alias('t1')
|
||||
->where($this->reportCondition())
|
||||
@@ -2045,7 +2045,7 @@ class taskModel extends model
|
||||
* @access public
|
||||
* @return array
|
||||
*/
|
||||
public function getDataOftasksPerType()
|
||||
public function getDataOfTasksPerType()
|
||||
{
|
||||
$tasks = $this->dao->select('id,type')->from(TABLE_TASK)->alias('t1')
|
||||
->where($this->reportCondition())
|
||||
@@ -2068,7 +2068,7 @@ class taskModel extends model
|
||||
* @access public
|
||||
* @return array
|
||||
*/
|
||||
public function getDataOftasksPerPri()
|
||||
public function getDataOfTasksPerPri()
|
||||
{
|
||||
$tasks = $this->dao->select('id,pri')->from(TABLE_TASK)->alias('t1')
|
||||
->where($this->reportCondition())
|
||||
@@ -2088,7 +2088,7 @@ class taskModel extends model
|
||||
* @access public
|
||||
* @return array
|
||||
*/
|
||||
public function getDataOftasksPerDeadline()
|
||||
public function getDataOfTasksPerDeadline()
|
||||
{
|
||||
$tasks = $this->dao->select('id,deadline')->from(TABLE_TASK)->alias('t1')
|
||||
->where($this->reportCondition())
|
||||
@@ -2105,7 +2105,7 @@ class taskModel extends model
|
||||
* @access public
|
||||
* @return array
|
||||
*/
|
||||
public function getDataOftasksPerEstimate()
|
||||
public function getDataOfTasksPerEstimate()
|
||||
{
|
||||
$tasks = $this->dao->select('id,estimate')->from(TABLE_TASK)->alias('t1')
|
||||
->where($this->reportCondition())
|
||||
@@ -2122,7 +2122,7 @@ class taskModel extends model
|
||||
* @access public
|
||||
* @return array
|
||||
*/
|
||||
public function getDataOftasksPerLeft()
|
||||
public function getDataOfTasksPerLeft()
|
||||
{
|
||||
$tasks = $this->dao->select('id,`left`')->from(TABLE_TASK)->alias('t1')
|
||||
->where($this->reportCondition())
|
||||
@@ -2139,7 +2139,7 @@ class taskModel extends model
|
||||
* @access public
|
||||
* @return array
|
||||
*/
|
||||
public function getDataOftasksPerConsumed()
|
||||
public function getDataOfTasksPerConsumed()
|
||||
{
|
||||
$tasks = $this->dao->select('id,consumed')->from(TABLE_TASK)->alias('t1')
|
||||
->where($this->reportCondition())
|
||||
@@ -2156,7 +2156,7 @@ class taskModel extends model
|
||||
* @access public
|
||||
* @return array
|
||||
*/
|
||||
public function getDataOftasksPerFinishedBy()
|
||||
public function getDataOfTasksPerFinishedBy()
|
||||
{
|
||||
$tasks = $this->dao->select('id,finishedBy')->from(TABLE_TASK)->alias('t1')
|
||||
->where($this->reportCondition())
|
||||
@@ -2181,7 +2181,7 @@ class taskModel extends model
|
||||
* @access public
|
||||
* @return array
|
||||
*/
|
||||
public function getDataOftasksPerClosedReason()
|
||||
public function getDataOfTasksPerClosedReason()
|
||||
{
|
||||
$tasks = $this->dao->select('id,closedReason')->from(TABLE_TASK)->alias('t1')
|
||||
->where($this->reportCondition())
|
||||
@@ -2224,7 +2224,7 @@ class taskModel extends model
|
||||
* @access public
|
||||
* @return array
|
||||
*/
|
||||
public function getDataOftasksPerStatus()
|
||||
public function getDataOfTasksPerStatus()
|
||||
{
|
||||
$tasks = $this->dao->select('id,status')->from(TABLE_TASK)->alias('t1')
|
||||
->where($this->reportCondition())
|
||||
|
||||
Reference in New Issue
Block a user