Ignore:
Timestamp:
2012/12/06 19:24:26 (11 years ago)
Author:
h_yoshimoto
Message:

#1903 プラグインへの影響を考慮して差し戻し

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

    r22090 r22123  
    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); 
    152155 
    153156            $this->arrData[$key] = $objCartSess->calculate($key, $objCustomer); 
  • branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Confirm.php

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