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/mypage/LC_Page_Mypage_Refusal.php

    r22569 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Mypage_Refusal extends LC_Page_AbstractMypage_Ex  
    35 { 
     34class LC_Page_Mypage_Refusal extends LC_Page_AbstractMypage_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846        $this->tpl_subtitle = '退会手続き(入力ページ)'; 
     
    5553     * @return void 
    5654     */ 
    57     function process() 
    58     { 
     55    function process() { 
    5956        parent::process(); 
    6057    } 
     
    6562     * @return void 
    6663     */ 
    67     function action() 
    68     { 
     64    function action() { 
    6965 
    7066        switch ($this->getMode()) { 
     
    9389     * @return void 
    9490     */ 
    95     function destroy() 
    96     { 
     91    function destroy() { 
    9792        parent::destroy(); 
    9893    } 
     
    10499     * @return void 
    105100     */ 
    106     function lfDeleteCustomer($customer_id) 
    107     { 
    108         return SC_Helper_Customer_Ex::delete($customer_id); 
     101    function lfDeleteCustomer($customer_id) { 
     102        $objQuery = SC_Query_Ex::getSingletonInstance(); 
     103 
     104        $sqlval['del_flg']      = 1; 
     105        $sqlval['update_date']  = 'CURRENT_TIMESTAMP'; 
     106        $where                  = 'customer_id = ?'; 
     107        $objQuery->update('dtb_customer', $sqlval, $where, array($customer_id)); 
    109108    } 
    110109 
Note: See TracChangeset for help on using the changeset viewer.