Exemple #1
0
 /**
  * 渲染对应审核人员待审核出库单审核列表
  */
 public function view_getAuditOutStoreList()
 {
     $userid = $_SESSION['userId'];
     $whIoStoreAct = new WhIoStoreAct();
     $Inlists = $whIoStoreAct->act_getAuditOutStoreList($userid);
     //面包屑
     $navlist = array(array('url' => '', 'title' => '单据业务'), array('url' => '', 'title' => '待审核出库单'));
     $this->smarty->assign('toplevel', 3);
     $this->smarty->assign('secondlevel', 34);
     $this->smarty->assign('navlist', $navlist);
     $this->smarty->assign('ioType', 2);
     $this->smarty->assign('InStoreLists', $Inlists);
     //循环列表
     $this->smarty->display("whIoPendingStore.htm");
 }