예제 #1
0
파일: iqc.view.php 프로젝트: ohjack/newErp
 public function view_iqcWaitCheck()
 {
     $IqcAct = new IqcAct();
     $where = "where sellerId=0 and detectStatus=1 and getUserId='{$_SESSION['userId']}' ";
     $total = $IqcAct->act_getNowWhNum($where);
     $num = 200;
     //每页显示的个数
     $page = new Page($total, $num, '', 'CN');
     $where .= "order by id desc " . $page->limit;
     $iqcList = $IqcAct->act_getNowWhList('*', $where);
     if (!empty($_GET['page'])) {
         if (intval($_GET['page']) <= 1 || intval($_GET['page']) > ceil($total / $num)) {
             $n = 1;
         } else {
             $n = (intval($_GET['page']) - 1) * $num + 1;
         }
     } else {
         $n = 1;
     }
     if ($total > $num) {
         //输出分页显示
         $show_page = $page->fpage(array(0, 2, 3, 4, 5, 6, 7, 8, 9));
     } else {
         $show_page = $page->fpage(array(0, 2, 3));
     }
     $this->smarty->assign('show_page', $show_page);
     $this->smarty->assign('iqcList', $iqcList);
     $this->smarty->assign('secnev', '1');
     //二级导航
     $this->smarty->assign('module', 'SKU等待检测');
     $this->smarty->assign('username', $_SESSION['userName']);
     $navarr = array("<a href='index.php?mod=iqc&act=iqcList'>iqc检测领取</a>", ">>", "等待检测");
     $this->smarty->assign('navarr', $navarr);
     $this->smarty->display('iqcWaitCheck.html');
 }
예제 #2
0
파일: iqc.view.php 프로젝트: ohjack/newErp
 public function view_iqcRestore()
 {
     $state = isset($_GET['state']) ? post_check($_GET['state']) : '';
     $this->smarty->assign('state', $state);
     $sku = isset($_GET['sku']) ? post_check($_GET['sku']) : '';
     $IqcAct = new IqcAct();
     $where = " where sellerId=1 and num>0 and is_delete=1 ";
     if ($sku) {
         $where .= "and sku ='{$sku}' ";
         $this->smarty->assign('sku', $sku);
     }
     $total = $IqcAct->act_getNowWhNum($where);
     $num = 100;
     //每页显示的个数
     $page = new Page($total, $num, '', 'CN');
     $where .= "order by id desc " . $page->limit;
     $iqcList = $IqcAct->act_getNowWhList('*', $where);
     if (!empty($_GET['page'])) {
         if (intval($_GET['page']) <= 1 || intval($_GET['page']) > ceil($total / $num)) {
             $n = 1;
         } else {
             $n = (intval($_GET['page']) - 1) * $num + 1;
         }
     } else {
         $n = 1;
     }
     if ($total > $num) {
         //输出分页显示
         $show_page = $page->fpage(array(0, 2, 3, 4, 5, 6, 7, 8, 9));
     } else {
         $show_page = $page->fpage(array(0, 2, 3));
     }
     $this->smarty->assign('show_page', $show_page);
     $this->smarty->assign('iqcList', $iqcList);
     $sku_arr = array();
     $sku_str = '';
     foreach ($iqcList as $list) {
         $sku_str .= "'" . $list['sku'] . "',";
     }
     $sku_str = "(" . trim($sku_str, ',') . ")";
     $skuinfo = UserCacheModel::goodsInfosCache("*", base64_encode("sku in {$sku_str}"));
     foreach ($skuinfo['data'] as $info) {
         $sku_arr[$info['sku']] = $info['goodsName'];
     }
     $this->smarty->assign('sku_arr', $sku_arr);
     $this->smarty->assign('secnev', '1');
     //二级导航
     $this->smarty->assign('module', '检索已删SKU');
     $this->smarty->assign('username', $_SESSION['userName']);
     $navarr = array("<a href='index.php?mod=iqc&act=iqcRestore'>QC检测领取</a>", ">>", "搜查已删sku");
     $this->smarty->assign('navarr', $navarr);
     $this->smarty->display('iqcRestore.htm');
 }