Changeset 20378


Ignore:
Timestamp:
2011/02/24 15:44:22 (13 years ago)
Author:
shutta
Message:

refs #966
商品追加ポップアップ画面の一覧表示でページ送りが動作していなかったのを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/admin/order/LC_Page_Admin_Order_ProductSelect.php

    r20345 r20378  
    9898 
    9999                // ページ送りの取得 
    100                 $objNavi = new SC_PageNavi($_POST['search_pageno'], $linemax, $page_max, "fnNaviSearchOnlyPage", NAVI_PMAX); 
     100                $objNavi = new SC_PageNavi($_POST['search_pageno'], $this->tpl_linemax, $page_max, "fnNaviSearchOnlyPage", NAVI_PMAX); 
    101101                $this->tpl_strnavi = $objNavi->strnavi;     // 表示文字列 
    102102                $startno = $objNavi->start_row; 
    103                 $arrProduct_id = $this->getProducts($wheres, $objProduct); 
     103                $arrProduct_id = $this->getProducts($wheres, $objProduct, $page_max, $startno); 
    104104                $productList = $this->getProductList($arrProduct_id,$objProduct); 
    105105                //取得している並び順で並び替え 
     
    189189     * @param SC_Product $objProduct 
    190190     */ 
    191     function getProducts($whereAndBind,&$objProduct){ 
     191    function getProducts($whereAndBind,&$objProduct, $page_max, $startno){ 
    192192        $where = $whereAndBind['where']; 
    193193        $bind = $whereAndBind['bind']; 
Note: See TracChangeset for help on using the changeset viewer.