* userControl: call getExecutions method instead of getObjects method.

This commit is contained in:
liugang
2023-12-08 22:26:27 +08:00
parent d1b8bd3837
commit 9ac78919f6
+1 -1
View File
@@ -344,7 +344,7 @@ class user extends control
$pager = pager::init($recTotal, $recPerPage, $pageID);
$this->view->title = $this->lang->user->common . $this->lang->colon . $this->lang->user->execution;
$this->view->executions = $this->user->getObjects($user->account, 'execution', 'all', $orderBy, $pager);
$this->view->executions = $this->user->getExecutions($user->account, 'all', $orderBy, $pager);
$this->view->deptUsers = $users;
$this->view->user = $user;
$this->view->orderBy = $orderBy;