tpl_mainpage = 'order/pdf_input.tpl'; $this->tpl_subnavi = 'order/subnavi.tpl'; $this->tpl_mainno = 'order'; $this->tpl_subno = 'pdf'; $this->tpl_subtitle = '帳票出力'; $this->SHORTTEXT_MAX = STEXT_LEN; $this->MIDDLETEXT_MAX = MTEXT_LEN; $this->LONGTEXT_MAX = LTEXT_LEN; $this->arrType[0] = "納品書"; $this->arrDownload[0] = "ブラウザに開く"; $this->arrDownload[1] = "ファイルに保存"; } /** * Page のプロセス. * * @return void */ function process() { $this->action(); $this->sendResponse(); } /** * Page のアクション. * * @return void */ function action() { $objDb = new SC_Helper_DB_Ex(); $objSess = new SC_Session(); $objDate = new SC_Date(1901); $objDate->setStartYear(RELEASE_YEAR); $this->arrYear = $objDate->getYear(); $this->arrMonth = $objDate->getMonth(); $this->arrDay = $objDate->getDay(); // 認証可否の判定 SC_Utils_Ex::sfIsSuccess($objSess); // 画面遷移の正当性チェック用にuniqidを埋め込む $objPage->tpl_uniqid = $objSess->getUniqId(); // パラメータ管理クラス $this->objFormParam = new SC_FormParam(); // パラメータ情報の初期化 $this->lfInitParam(); $this->objFormParam->setParam($_POST); if (!isset($_POST['mode'])) $_POST['mode'] = ""; if (!isset($arrRet)) $arrRet = array(); switch($_POST['mode']) { case "confirm": // 入力値の変換 $this->objFormParam->convParam(); $this->arrErr = $this->lfCheckError($arrRet); $arrRet = $this->objFormParam->getHashArray(); $this->arrForm = $arrRet; // エラー入力なし if (count($this->arrErr) == 0) { $objFpdf = new SC_Fpdf($arrRet['download'], $arrRet['title']); foreach ($arrRet['order_id'] AS $key => $val) { $arrPdfData = $arrRet; $arrPdfData['order_id'] = $val; $objFpdf->setData($arrPdfData); } $objFpdf->createPdf(); exit; } break; default: // タイトルをセット $arrForm['title'] = "お買上げ明細書(納品書)"; // 今日の日付をセット $arrForm['year'] = date("Y"); $arrForm['month'] = date("m"); $arrForm['day'] = date("d"); // メッセージ $arrForm['msg1'] = 'このたびはお買上げいただきありがとうございます。'; $arrForm['msg2'] = '下記の内容にて納品させていただきます。'; $arrForm['msg3'] = 'ご確認いただきますよう、お願いいたします。'; // 注文番号があったら、セットする if(SC_Utils_Ex::sfIsInt($_GET['order_id'])) { $arrForm['order_id'][0] = $_GET['order_id']; } elseif (is_array($_POST['pdf_order_id'])) { sort($_POST['pdf_order_id']); foreach ($_POST['pdf_order_id'] AS $key=>$val) { $arrForm['order_id'][] = $val; } } $this->arrForm = $arrForm; break; } $this->setTemplate($this->tpl_mainpage); } /** * デストラクタ. * * @return void */ function destroy() { parent::destroy(); } /* パラメータ情報の初期化 */ function lfInitParam() { $this->objFormParam->addParam("注文番号", "order_id", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("発行日", "year", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("発行日", "month", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("発行日", "day", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("帳票の種類", "type", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("ダウンロード方法", "download", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("帳票タイトル", "title", STEXT_LEN, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("帳票メッセージ1行目", "msg1", STEXT_LEN*3/5, "KVa", array("MAX_LENGTH_CHECK")); $this->objFormParam->addParam("帳票メッセージ2行目", "msg2", STEXT_LEN*3/5, "KVa", array("MAX_LENGTH_CHECK")); $this->objFormParam->addParam("帳票メッセージ3行目", "msg3", STEXT_LEN*3/5, "KVa", array("MAX_LENGTH_CHECK")); $this->objFormParam->addParam("備考1行目", "etc1", STEXT_LEN, "KVa", array("MAX_LENGTH_CHECK")); $this->objFormParam->addParam("備考2行目", "etc2", STEXT_LEN, "KVa", array("MAX_LENGTH_CHECK")); $this->objFormParam->addParam("備考3行目", "etc3", STEXT_LEN, "KVa", array("MAX_LENGTH_CHECK")); $this->objFormParam->addParam("ポイント表記", "disp_point", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK")); } /* 入力内容のチェック */ function lfCheckError() { // 入力データを渡す。 $arrRet = $this->objFormParam->getHashArray(); $objErr = new SC_CheckError($arrRet); $objErr->arrErr = $this->objFormParam->checkError(); // 特殊項目チェック $objErr->doFunc(array("発行日", "year", "month", "day"), array("CHECK_DATE")); return $objErr->arrErr; } } ?>