* fix bug.

This commit is contained in:
wangyidong
2019-06-18 10:52:46 +08:00
parent fe5866bea0
commit 50cb4f7ea1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ $lang->custom->user->fields['statusList'] = 'Status';
$lang->custom->user->fields['contactField'] = 'Available Contact';
$lang->custom->user->fields['deleted'] = 'Deleted User';
$lang->custom->system = array('flow', 'working', 'required', 'score', 'setDynamic');
$lang->custom->system = array('flow', 'working', 'required', 'score');
$lang->custom->block->fields['closed'] = 'Closed Block';
+1 -1
View File
@@ -1106,7 +1106,7 @@ class testcase extends control
}
$stmt = $this->dao->select('t1.*')->from(TABLE_TESTRESULT)->alias('t1')
->leftJoin('TABLE_TESTRUN')->alias('t2')->on('t1.run=t2.id')
->leftJoin(TABLE_TESTRUN)->alias('t2')->on('t1.run=t2.id')
->where('t1.`case`')->in(array_keys($cases))
->beginIF($taskID)->andWhere('t2.task')->eq($taskID)->fi()
->orderBy('id_desc')