tpl_mypageno = 'index'; if (SC_Display_Ex::detectDevice() === DEVICE_TYPE_MOBILE){ $this->tpl_subtitle = 'MYページ'; } else { $this->tpl_subtitle = '購入履歴一覧'; } $this->httpCacheControl('nocache'); } /** * Page のプロセス. * * @return void */ function process() { parent::process(); } /** * Page のAction. * * @return void */ function action() { $objCustomer = new SC_Customer(); $customer_id = $objCustomer->getvalue('customer_id'); //ページ送り用 $this->objNavi = new SC_PageNavi($_REQUEST['pageno'], $this->lfGetOrderHistory($customer_id), SEARCH_PMAX, "fnNaviPage", NAVI_PMAX, 'pageno=#page#', SC_Display_Ex::detectDevice() !== DEVICE_TYPE_MOBILE); $this->arrOrder = $this->lfGetOrderHistory($customer_id, $this->objNavi->start_row); // 支払い方法の取得 $this->arrPayment = SC_Helper_DB_Ex::sfGetIDValueList("dtb_payment", "payment_id", "payment_method"); } /** * デストラクタ. * * @return void */ function destroy() { parent::destroy(); } /** * 受注履歴を返す * * @param mixed $customer_id * @param mixed $startno 0以上の場合は受注履歴を返却する -1の場合は件数を返す * @access private * @return void */ function lfGetOrderHistory($customer_id, $startno = -1) { $objQuery = SC_Query::getSingletonInstance(); $col = "order_id, create_date, payment_id, payment_total"; $from = "dtb_order"; $where = "del_flg = 0 AND customer_id = ?"; $arrval = array($customer_id); $order = "order_id DESC"; if ($startno == -1) { return $objQuery->count($from, $where, $arrval); } $objQuery->setLimitOffset(SEARCH_PMAX, $startno); // 表示順序 $objQuery->setOrder($order); //購入履歴の取得 return $objQuery->select($col, $from, $where, $arrval); } }