/**
  * Page のアクション.
  *
  * @return void
  */
 function action()
 {
     $objPurchase = new SC_Helper_Purchase_Ex();
     $objFormParam = new SC_FormParam_Ex();
     // パラメータ情報の初期化
     $this->lfInitParam($objFormParam);
     $objFormParam->setParam($_REQUEST);
     $objFormParam->convParam();
     $order_id = $objFormParam->getValue('order_id');
     // DBから受注情報を読み込む
     $this->setOrderToFormParam($objFormParam, $order_id);
     $this->arrForm = $objFormParam->getFormParamList();
     $this->arrAllShipping = $objFormParam->getSwapArray(array_merge($this->arrShippingKeys, $this->arrShipmentItemKeys));
     $this->arrDelivTime = $objPurchase->getDelivTime($objFormParam->getValue('deliv_id'));
     $this->arrInfo = SC_Helper_DB_Ex::sfGetBasisData();
     $this->setTemplate($this->tpl_mainpage);
 }