Ignore:
Timestamp:
2012/03/02 00:53:37 (12 years ago)
Author:
Seasoft
Message:

#1439 (「お届け先の指定」に戻った際に、選択した状態を引き継いでいない)

  • rv r21567 (PostgreSQL でエラーが発生するため、一旦差し戻しをさせて頂きます。)
File:
1 edited

Legend:

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

    r21567 r21570  
    148148        } 
    149149 
    150     // 配送IDの取得 
    151     $shippingData = $objPurchase->getShippingTemp(); 
    152     if($shippingData[0]['shipping_deliv_check'] != null){ 
    153         $this->arrForm['deliv_check'] = $shippingData[0]['shipping_deliv_check']; 
    154     } 
    155150        // 登録済み住所を取得 
    156151        $this->arrAddr = $objCustomer->getCustomerAddress($objCustomer->getValue('customer_id')); 
     
    216211        elseif ($deliv_check >= 1) { 
    217212            $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    218             $arrOtherDeliv = $objQuery->getRow('* , ? as deliv_check', 'dtb_other_deliv', 
     213            $arrOtherDeliv = $objQuery->getRow('*', 'dtb_other_deliv', 
    219214                                               'customer_id = ? AND other_deliv_id = ?', 
    220                                                array($deliv_check, $objCustomer->getValue('customer_id'), $deliv_check)); 
     215                                               array($objCustomer->getValue('customer_id'), $deliv_check)); 
    221216            if (SC_Utils_Ex::isBlank($arrOtherDeliv)) { 
    222217                return false; 
Note: See TracChangeset for help on using the changeset viewer.