Changeset 17702


Ignore:
Timestamp:
2008/11/10 20:44:50 (15 years ago)
Author:
takegami
Message:

#395 対応

File:
1 edited

Legend:

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

    r17685 r17702  
    114114            // 入力値の変換 
    115115            $this->objFormParam->convParam(); 
    116             $this->arrErr = $this->lfCheckError($this->arrData ); 
     116            $this->arrErr = $this->lfCheckError($this->arrData, $arrInfo, $objCartSess ); 
    117117            // 入力エラーなし 
    118118            if(count($this->arrErr) == 0) { 
     
    239239            // 入力値の変換 
    240240            $this->objFormParam->convParam(); 
    241             $this->arrErr = $this->lfCheckError($this->arrData); 
     241            $this->arrErr = $this->lfCheckError($this->arrData, $arrInfo, $objCartSess); 
    242242            if (!isset($this->arrErr['payment_id'])) { 
    243243                // 支払い方法の入力エラーなし 
     
    255255            // 入力値の変換 
    256256            $this->objFormParam->convParam(); 
    257             $this->arrErr = $this->lfCheckError($this->arrData ); 
     257            $this->arrErr = $this->lfCheckError($this->arrData, $arrInfo, $objCartSess); 
    258258            // 入力エラーなし 
    259259            if(count($this->arrErr) == 0) { 
     
    364364 
    365365    /* 入力内容のチェック */ 
    366     function lfCheckError($arrData) { 
     366    function lfCheckError($arrData, $arrInfo, $objCartSess) { 
    367367        // 入力データを渡す。 
    368368        $arrRet =  $this->objFormParam->getHashArray(); 
     
    388388        } 
    389389         
    390         $objView = new SC_MobileView(); 
    391         $objSiteInfo = $objView->objSiteInfo; 
    392         $arrInfo = $objSiteInfo->data; 
    393         $objCartSess = new SC_CartSession(); 
    394         $arrInfo = $objSiteInfo->data; 
    395390        // 購入金額の取得得 
    396391        $total_pretax = $objCartSess->getAllProductsTotal($arrInfo); 
Note: See TracChangeset for help on using the changeset viewer.