Merge branch release/21.7.6 of zentao/zentaopms (#11951)

This commit is contained in:
朱金勇
2025-10-20 16:39:41 +08:00
committed by Gitfox
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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);
+1 -1
View File
@@ -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;