* Fix error for actions.

This commit is contained in:
caoyanyi
2023-06-30 12:25:38 +08:00
parent 3d8128aa28
commit 5056cd960a
+1 -1
View File
@@ -1478,7 +1478,7 @@ class actionModel extends model
elseif($objectType == 'stakeholder')
{
$objectName = $this->dao->select("t1.id, t2.realname")->from($table)->alias('t1')
->leftJoin(TABLE_USER)->alias('t2')->on("t1.{`$field`} = t2.account")
->leftJoin(TABLE_USER)->alias('t2')->on("t1.`{$field}` = t2.account")
->where('t1.id')->in($objectIdList)
->fetchPairs();
}