Ignore:
Timestamp:
2010/10/20 19:13:15 (14 years ago)
Author:
nanasess
bzr:base-revision:
ohkouchi@loop-az.jp-20101019060210-f9ll2iywezf74j7f
bzr:committer:
Kentaro Ohkouchi <ohkouchi@loop-az.jp>
bzr:file-ids:

data/class/SC_Product.php 18277@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Fcomu-ver2%2Fdata%2Fclass%2FSC_Product.php
data/class/helper/SC_Helper_DB.php 15176@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fhelper%2FSC_Helper_DB.php
data/class/helper/SC_Helper_Purchase.php sc_helper_purchase.p-20101020100530-jyaoa7ch9pdfjqzp-1
data/class/pages/shopping/LC_Page_Shopping_Complete.php 15223@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fshopping%2FLC_Page_Shopping_Complete.php
data/class/pages/shopping/LC_Page_Shopping_Confirm.php 15223@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fshopping%2FLC_Page_Shopping_Confirm.php
data/class/pages/shopping/LC_Page_Shopping_Payment.php 15223@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fshopping%2FLC_Page_Shopping_Payment.php
data/class_extends/helper_extends/SC_Helper_Purchase_Ex.php sc_helper_purchase_e-20101020100531-2rjt2ynuw2t3vx6n-1
data/require_classes.php 18500@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Fversion-2_4-dev%2Fdata%2Frequire_classes.php
bzr:mapping-version:
v4
bzr:repository-uuid:
1e3b908f-19a9-db11-a64c-001125224ba8
bzr:revision-id:
ohkouchi@loop-az.jp-20101020101311-splvyjvs8i4nlqbp
bzr:revno:
2340
bzr:revprop:branch-nick:
branches/version-2_5-dev
bzr:root:
branches/version-2_5-dev
bzr:timestamp:
2010-10-20 19:13:11.368999958 +0900
bzr:user-agent:
bzr2.2.0+bzr-svn1.0.3
svn:original-date:
2010-10-20T10:13:11.369000Z
Message:

ページ間の遷移方法の改善(#783)

  • PC版のみ実装
  • 購入関連の処理を SC_Helper_Purchase へ移動
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php

    r18859 r18860  
    114114        // カート内商品の集計処理を行う 
    115115        $this->cartKey = $_SESSION['cartKey']; 
    116         $cartItems = $objCartSess->getCartList($this->cartKey); 
    117         $i = 0; 
    118         // TODO リファクタリング 
    119         foreach (array_keys($cartItems) as $itemKey) { 
    120             $cartItem =& $cartItems[$itemKey]; 
    121             if (!SC_Utils_Ex::isBlank($cartItem)) { 
    122                 $this->cartItems[$i] =& $cartItem; 
    123                 $i++; 
    124             } 
    125         } 
     116        $this->cartItems = $objCartSess->getCartList($this->cartKey); 
    126117        $this->tpl_message = $objCartSess->checkProducts($this->cartKey); 
    127118 
     
    174165        } 
    175166 
    176         // 購入金額の取得 
    177         $total_pretax = $objCartSess->getAllProductsTotal(); 
     167        // 購入金額の取得 
     168        $total_pretax = $objCartSess->getAllProductsTotal($this->cartKey); 
    178169        // 支払い方法の取得 
    179170        $this->arrPayment = $this->lfGetPayment($total_pretax); 
Note: See TracChangeset for help on using the changeset viewer.