* Replace leftjoin to leftJoin.

This commit is contained in:
dingguodong
2023-08-24 16:49:54 +08:00
parent 6ecbaa5dfc
commit 0b7c7329e5
11 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -1507,7 +1507,7 @@ class taskModel extends model
{
$tasks = $this->dao->select('t1.id, t1.name, t2.name as executionName')
->from(TABLE_TASK)->alias('t1')
->leftjoin(TABLE_PROJECT)->alias('t2')->on('t1.execution = t2.id')
->leftJoin(TABLE_PROJECT)->alias('t2')->on('t1.execution = t2.id')
->where('t1.assignedTo')->eq($account)
->andWhere('t1.deleted')->eq(0)
->andWhere('t2.deleted')->eq(0)