Ignore:
Timestamp:
2013/07/20 16:19:43 (11 years ago)
Author:
AMUAMU
Message:

#1730 (税率変更に対応できない)
#2191 (税率対応に向けて、税率管理画面を作成する)
#2235 (越境ECを想定した機能の追加)
関係の修正一部

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/helper/SC_Helper_Purchase.php

    r22857 r22976  
    3434class SC_Helper_Purchase 
    3535{ 
     36 
    3637    var $arrShippingKey = array( 
    3738        'name01', 'name02', 'kana01', 'kana02', 
    38         'sex', 'zip01', 'zip02', 'country_id','pref', 'addr01', 'addr02', 
     39        'sex', 'zip01', 'zip02', 'country_id', 'zipcode', 'pref', 'addr01', 'addr02', 
    3940        'tel01', 'tel02', 'tel03', 'fax01', 'fax02', 'fax03', 
    4041    ); 
     
    771772 
    772773        // 詳細情報を取得 
    773         $cartItems = $objCartSession->getCartList($cartKey); 
     774        $cartItems = $objCartSession->getCartList($cartKey, $orderParams['order_pref'], $orderParams['order_country_id']); 
    774775 
    775776        // 詳細情報を生成 
     
    789790            $arrDetail[$i]['price'] = $item['price']; 
    790791            $arrDetail[$i]['quantity'] = $item['quantity']; 
    791             $arrDetail[$i]['tax_rate'] = $orderParams['order_tax_rate']; 
    792             $arrDetail[$i]['tax_rule'] = $orderParams['order_tax_rule']; 
     792            $arrDetail[$i]['tax_rate'] = $item['tax_rate']; 
     793            $arrDetail[$i]['tax_rule'] = $item['tax_rule']; 
     794            $arrDetail[$i]['tax_adjuts'] = $item['tax_adjust']; 
    793795 
    794796            // 在庫の減少処理 
Note: See TracChangeset for help on using the changeset viewer.