Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Shopping_Deliv extends LC_Page_Ex  
    35 { 
     34class LC_Page_Shopping_Deliv extends LC_Page_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846        $masterData = new SC_DB_MasterData_Ex(); 
     
    5755     * @return void 
    5856     */ 
    59     function process() 
    60     { 
     57    function process() { 
    6158        parent::process(); 
    6259        $this->action(); 
     
    6966     * @return void 
    7067     */ 
    71     function action() 
    72     { 
     68    function action() { 
    7369 
    7470        $objSiteSess = new SC_SiteSession_Ex(); 
     
    114110            // 削除 
    115111            case 'delete': 
    116                 $objAddress->deleteAddress($arrForm['other_deliv_id']); 
     112                $objAddress->delete($arrForm['other_deliv_id']); 
    117113                break; 
    118114 
     
    195191     * @return void 
    196192     */ 
    197     function destroy() 
    198     { 
     193    function destroy() { 
    199194        parent::destroy(); 
    200195    } 
     
    206201     * @return void 
    207202     */ 
    208     function lfInitParam(&$objFormParam) 
    209     { 
     203    function lfInitParam(&$objFormParam) { 
    210204        $objFormParam->addParam('その他のお届け先ID', 'other_deliv_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    211205        $objFormParam->addParam('お届け先チェック', 'deliv_check', INT_LEN, 'n', array('MAX_LENGTH_CHECK')); 
     
    225219     * @return boolean お届け先チェックの値が妥当な場合 true 
    226220     */ 
    227     function registerDeliv($other_deliv_id, $uniqid, &$objPurchase, &$objCustomer, $objAddress) 
    228     { 
     221    function registerDeliv($other_deliv_id, $uniqid, &$objPurchase, &$objCustomer, $objAddress) { 
    229222        GC_Utils_Ex::gfDebugLog('register deliv. deliv_check=' . $deliv_check); 
    230223        $arrValues = array(); 
     
    235228        // 別のお届け先がチェックされている場合 
    236229        else { 
    237             $arrOtherDeliv = $objAddress->getAddress($other_deliv_id); 
     230            $arrOtherDeliv = $objAddress->get($other_deliv_id); 
    238231            if (!$arrOtherDeliv) { 
    239232                return false; 
Note: See TracChangeset for help on using the changeset viewer.