From 8579449409e637ed2ee46599c78b4ff67ada0388 Mon Sep 17 00:00:00 2001 From: sunguangming Date: Mon, 20 Oct 2025 08:35:08 +0000 Subject: [PATCH] * [error] add param. --- module/my/control.php | 2 +- module/my/zen.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/my/control.php b/module/my/control.php index dc565f531d..c456324326 100755 --- a/module/my/control.php +++ b/module/my/control.php @@ -962,7 +962,7 @@ class my extends control if($this->app->getViewType() == 'mhtml') $recPerPage = 10; $pager = pager::init($recTotal, $recPerPage, $pageID); - $auditplans = $this->loadModel('auditplan')->getList(0, $browseType, $param, $orderBy, $pager); + $auditplans = $this->loadModel('auditplan')->getList(0, 'my', $browseType, $param, $orderBy, $pager); $this->myZen->showWorkCount($recTotal, $recPerPage, $pageID); diff --git a/module/my/zen.php b/module/my/zen.php index 96dd4528c0..fd3b8793f0 100644 --- a/module/my/zen.php +++ b/module/my/zen.php @@ -282,7 +282,7 @@ class myZen extends my /* Get the number of nc assigned to me. */ $pager->recTotal = 0; - $this->loadModel('auditplan')->getList(0, 'mychecking', '', 'id_desc', $pager); + $this->loadModel('auditplan')->getList(0, 'my', 'mychecking', '', 'id_desc', $pager); $auditplanCount = $pager->recTotal; $count['qa'] = $ncCount + $auditplanCount;