Ignore:
Timestamp:
2013/08/05 06:22:14 (11 years ago)
Author:
AMUAMU
Message:

#2323 (税率対応)
#2235 (越境ECを想定した機能の追加)
#2234 (非会員お客様情報入力テンプレートと機能の共通化)
#2324 (会員登録、注文フォームに「会社名」フィールドを足す)
#2233 (購入手続きのログイン画面でログイン出来ないユーザーがいる)
などの修正

File:
1 edited

Legend:

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

    r22942 r23026  
    4343        $masterData = new SC_DB_MasterData_Ex(); 
    4444        $this->arrPref = $masterData->getMasterData('mtb_pref'); 
     45        $this->arrCountry = $masterData->getMasterData('mtb_country'); 
    4546        $this->tpl_title = 'お届け先の指定'; 
    4647        $this->httpCacheControl('nocache'); 
     
    151152                // 配送IDの取得 
    152153                $shippingData = $objPurchase->getShippingTemp(); 
    153                 $arrShippingId = array_keys($shippingData); 
     154                if (!SC_Utils_Ex::isBlank($shippingData)) { 
     155                    $arrShippingId = array_keys($shippingData); 
     156                } 
    154157                if (isset($arrShippingId[0])) { 
    155158                    $this->arrForm['deliv_check']['value'] = $arrShippingId[0] == 0 ? -1 : $arrShippingId[0]; 
     
    167170                'kana01'            => $objCustomer->getValue('kana01'), 
    168171                'kana02'            => $objCustomer->getValue('kana02'), 
     172                'company_name'      => $objCustomer->getValue('company_name'), 
     173                'country_id'           => $objCustomer->getValue('country_id'), 
     174                'zipcode'           => $objCustomer->getValue('zipcode'), 
    169175                'zip01'             => $objCustomer->getValue('zip01'), 
    170176                'zip02'             => $objCustomer->getValue('zip02'), 
Note: See TracChangeset for help on using the changeset viewer.