Ignore:
Timestamp:
2013/05/02 18:11:36 (13 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/helper/SC_Helper_Address.php

    r22567 r22796  
    3737     * @return array() 
    3838     */ 
    39     function registAddress($sqlval) 
    40     { 
     39    function save($sqlval) { 
    4140        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    4241        $customer_id = $sqlval['customer_id']; 
     
    7877     * @return array() 
    7978     */ 
    80     function getAddress($other_deliv_id) 
    81     { 
     79    function get($other_deliv_id) { 
    8280        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    8381        $address = $objQuery->select('*', 'dtb_other_deliv', 'other_deliv_id = ?', array($other_deliv_id)); 
     
    9290     * @return array 
    9391     */ 
    94     function getList($customer_id, $startno = '') 
    95     { 
     92    function getList($customer_id, $startno = '') { 
    9693        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    9794        $objQuery->setOrder('other_deliv_id DESC'); 
     
    109106     * @return void 
    110107     */ 
    111     function deleteAddress($other_deliv_id) 
    112     { 
     108    function delete($other_deliv_id) { 
    113109        $where      = 'other_deliv_id = ?'; 
    114110        $objQuery   =& SC_Query_Ex::getSingletonInstance(); 
     
    122118     * @return void 
    123119     */ 
    124     function setFormParam(&$objFormParam) 
    125     { 
     120    function setFormParam(&$objFormParam) { 
    126121        SC_Helper_Customer_Ex::sfCustomerCommonParam($objFormParam); 
    127122        $objFormParam->addParam('', 'other_deliv_id'); 
     
    134129     * @return void 
    135130     */ 
    136     function errorCheck(&$objFormParam) 
    137     { 
     131    function errorCheck(&$objFormParam) { 
    138132        $objErr = SC_Helper_Customer_Ex::sfCustomerCommonErrorCheck($objFormParam); 
    139133        return $objErr->arrErr; 
Note: See TracChangeset for help on using the changeset viewer.