Ignore:
Timestamp:
2012/11/11 02:57:02 (11 years ago)
Author:
Seasoft
Message:

#1903 (無駄な処理を改善する)

  • セットしているのみで参照がない変数。(2.11でも利用無きことを確認)
Location:
branches/version-2_12-dev/data/class/pages
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/cart/LC_Page_Cart.php

    r21981 r22090  
    150150            $this->tpl_total_inctax[$key] = $objCartSess->getAllProductsTotal($key); 
    151151            $totalIncTax += $this->tpl_total_inctax[$key]; 
    152             $this->tpl_total_tax[$key] = $objCartSess->getAllProductsTax($key); 
    153             // ポイント合計 
    154             $this->tpl_total_point[$key] = $objCartSess->getAllProductsPoint($key); 
    155152 
    156153            $this->arrData[$key] = $objCartSess->calculate($key, $objCustomer); 
  • branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Confirm.php

    r22077 r22090  
    105105        // 合計金額 
    106106        $this->tpl_total_inctax[$this->cartKey] = $objCartSess->getAllProductsTotal($this->cartKey); 
    107         // 税額 
    108         $this->tpl_total_tax[$this->cartKey] = $objCartSess->getAllProductsTax($this->cartKey); 
    109         // ポイント合計 
    110         $this->tpl_total_point[$this->cartKey] = $objCartSess->getAllProductsPoint($this->cartKey); 
    111107 
    112108        // 一時受注テーブルの読込 
Note: See TracChangeset for help on using the changeset viewer.