- Timestamp:
- 2013/05/02 18:11:36 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/helper/SC_Helper_Address.php
r22567 r22796 37 37 * @return array() 38 38 */ 39 function registAddress($sqlval) 40 { 39 function save($sqlval) { 41 40 $objQuery =& SC_Query_Ex::getSingletonInstance(); 42 41 $customer_id = $sqlval['customer_id']; … … 78 77 * @return array() 79 78 */ 80 function getAddress($other_deliv_id) 81 { 79 function get($other_deliv_id) { 82 80 $objQuery =& SC_Query_Ex::getSingletonInstance(); 83 81 $address = $objQuery->select('*', 'dtb_other_deliv', 'other_deliv_id = ?', array($other_deliv_id)); … … 92 90 * @return array 93 91 */ 94 function getList($customer_id, $startno = '') 95 { 92 function getList($customer_id, $startno = '') { 96 93 $objQuery =& SC_Query_Ex::getSingletonInstance(); 97 94 $objQuery->setOrder('other_deliv_id DESC'); … … 109 106 * @return void 110 107 */ 111 function deleteAddress($other_deliv_id) 112 { 108 function delete($other_deliv_id) { 113 109 $where = 'other_deliv_id = ?'; 114 110 $objQuery =& SC_Query_Ex::getSingletonInstance(); … … 122 118 * @return void 123 119 */ 124 function setFormParam(&$objFormParam) 125 { 120 function setFormParam(&$objFormParam) { 126 121 SC_Helper_Customer_Ex::sfCustomerCommonParam($objFormParam); 127 122 $objFormParam->addParam('', 'other_deliv_id'); … … 134 129 * @return void 135 130 */ 136 function errorCheck(&$objFormParam) 137 { 131 function errorCheck(&$objFormParam) { 138 132 $objErr = SC_Helper_Customer_Ex::sfCustomerCommonErrorCheck($objFormParam); 139 133 return $objErr->arrErr;
Note: See TracChangeset
for help on using the changeset viewer.
