コード例 #1
0
ファイル: products.view.php プロジェクト: ohjack/newErp
 public function view_getOutStoreDetailList()
 {
     $iostoreAct = new IoStoreAct();
     $outStoreDetailArr = $iostoreAct->act_getOutStoreDetailList();
     $outStore = $outStoreDetailArr['outStore'];
     $show_page = $outStoreDetailArr['show_page'];
     $outStoreDetailList = $outStoreDetailArr['outStoreDetailList'];
     $navlist = array(array('url' => 'index.php?mod=products&act=getProductsComfirmList', 'title' => '产品制作'), array('url' => "index.php?mod=products&act=getOutStoreList", 'title' => "领料单"), array('url' => "index.php?mod=products&act=getOutStoreDetailList&iostoreId={$outStore['id']}", 'title' => "领料单详细_{$outStore['ordersn']}"));
     $this->smarty->assign('navlist', $navlist);
     $this->smarty->assign('onevar', 5);
     $this->smarty->assign('twovar', 57);
     $this->smarty->assign('show_page', $show_page);
     $this->smarty->assign('title', '领料单详细');
     $this->smarty->assign('outStore', $outStore);
     $this->smarty->assign('outStoreDetailList', empty($outStoreDetailList) ? array() : $outStoreDetailList);
     $this->smarty->display("outStoreDetailList.htm");
 }