Changeset 20274


Ignore:
Timestamp:
2011/02/20 22:48:14 (13 years ago)
Author:
miningbrownie
Message:

ぶった斬りポイント消したりコメント入れたり。

File:
1 edited

Legend:

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

    r20272 r20274  
    105105                $this->tpl_strnavi = $objNavi->strnavi;     // 表示文字列 
    106106                $startno = $objNavi->start_row; 
    107                 //ぶった斬りポイント================================================================== 
    108107                $arrProduct_id = $this->getProducts($wheres, $objProduct); 
    109                 //ぶった斬りポイント================================================================== 
    110108                $productList = $this->getProductList($arrProduct_id,$objProduct); 
    111                 //ぶった斬りポイント================================================================== 
    112109                //取得している並び順で並び替え 
    113110                $this->arrProducts = $this->sortProducts($arrProduct_id,$productList); 
    114                 //ぶった斬りポイント================================================================== 
    115111                $objProduct->setProductsClassByProductIds($arrProduct_id); 
    116                 //ぶった斬りポイント================================================================== 
    117112                $this->tpl_javascript .= $this->getTplJavascript($objProduct); 
    118                 //ぶった斬りポイント================================================================== 
    119113                $js_fnOnLoad = $this->getFnOnload($this->arrProducts); 
    120                 //ぶった斬りポイント================================================================== 
    121114                $this->tpl_javascript .= 'function fnOnLoad(){' . $js_fnOnLoad . '}'; 
    122115                $this->tpl_onload .= 'fnOnLoad(); '; 
     
    143136    } 
    144137 
     138    /** 
     139     *  
     140     * 商品取得 
     141     * @param array $arrProduct_id 
     142     * @param SC_Product $objProduct 
     143     */ 
    145144    function getProductList($arrProduct_id,&$objProduct){ 
    146145        $where = ""; 
     
    156155    } 
    157156 
    158  
     157    /** 
     158     * ロード時に実行するJavascriptを生成 
     159     * @param array $arrProducts 
     160     */ 
    159161    function getFnOnload($arrProducts){ 
    160162        foreach ($arrProducts as $arrProduct) { 
     
    163165    } 
    164166 
     167    /** 
     168     * 規格クラス用JavaScript生成 
     169     * @param SC_Product $objProduct 
     170     */ 
    165171    function getTplJavascript(&$objProduct){ 
    166172        $objJson = new Services_JSON(); 
     
    190196    /** 
    191197     * 
    192      * Enter description here ... 
    193      * @param unknown_type $whereAndBind 
    194      * @param unknown_type $objProduct 
     198     * 検索結果対象となる商品の数を返す。 
     199     * @param array $whereAndBind 
     200     * @param SC_Product $objProduct 
    195201     */ 
    196202    function getLineCount($whereAndBind,&$objProduct){ 
     
    282288    /** 
    283289     * デストラクタ. 
    284      * 
    285290     * @return void 
    286291     */ 
     
    305310        return $arrConvList; 
    306311    } 
     312     
    307313    /** 
    308314     * パラメータ情報の初期化 
Note: See TracChangeset for help on using the changeset viewer.