Ignore:
Timestamp:
2012/06/26 21:28:06 (12 years ago)
Author:
h_yoshimoto
Message:

#1409 Myページに決済中のステータス表記を入れる

File:
1 edited

Legend:

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

    r21867 r21942  
    5555            $this->tpl_subtitle = '購入履歴一覧'; 
    5656        } 
     57        $masterData = new SC_DB_MasterData(); 
     58        $this->arrCustomerOrderStatus = $masterData->getMasterData('mtb_customer_order_status'); 
     59         
    5760        $this->httpCacheControl('nocache'); 
    5861    } 
     
    100103        // 1ページあたりの件数 
    101104        $this->dispNumber = SEARCH_PMAX; 
    102  
    103  
     105         
     106         
    104107    } 
    105108 
     
    124127        $objQuery   = SC_Query_Ex::getSingletonInstance(); 
    125128 
    126         $col        = 'order_id, create_date, payment_id, payment_total'; 
     129        $col        = 'order_id, create_date, payment_id, payment_total, status'; 
    127130        $from       = 'dtb_order'; 
    128131        $where      = 'del_flg = 0 AND customer_id = ?'; 
Note: See TracChangeset for help on using the changeset viewer.