tpl_mainpage = 'order/edit.tpl'; $this->tpl_subnavi = 'order/subnavi.tpl'; $this->tpl_mainno = 'order'; $this->tpl_subno = 'index'; $this->tpl_subtitle = '受注管理'; if (empty($_GET['order_id']) && empty($_POST['order_id'])) { $this->tpl_subno = 'add'; $this->tpl_mode = 'add'; $this->tpl_subtitle = '新規受注入力'; } $masterData = new SC_DB_MasterData_Ex(); $this->arrPref = $masterData->getMasterData('mtb_pref'); $this->arrORDERSTATUS = $masterData->getMasterData("mtb_order_status"); $this->httpCacheControl('nocache'); } /** * Page のプロセス. * * @return void */ function process() { $this->action(); $this->sendResponse(); } /** * Page のアクション. * * @return void */ function action() { $objSess = new SC_Session(); $objDb = new SC_Helper_DB_Ex(); $objDate = new SC_Date(1970); $objPurchase = new SC_Helper_Purchase_Ex(); $this->arrYearShippingDate = $objDate->getYear('', date('Y'), ''); $this->arrMonthShippingDate = $objDate->getMonth(true); $this->arrDayShippingDate = $objDate->getDay(true); // パラメータ管理クラス $this->objFormParam = new SC_FormParam(); // パラメータ情報の初期化 $this->lfInitParam(); // 認証可否の判定 SC_Utils_Ex::sfIsSuccess($objSess); // 検索パラメータの引き継ぎ foreach ($_POST as $key => $val) { if (ereg("^search_", $key)) { $this->arrSearchHidden[$key] = $val; } } // 表示モード判定 if(isset($_GET['order_id']) && SC_Utils_Ex::sfIsInt($_GET['order_id'])) { $this->disp_mode = true; $order_id = $_GET['order_id']; } else { $order_id = $_POST['order_id']; } $this->tpl_order_id = $order_id; // DBから受注情報を読み込む $this->lfGetOrderData($order_id); switch($_POST['mode']) { case 'pre_edit': case 'order_id': break; case 'edit': case 'add': // POST情報で上書き $this->objFormParam->setParam($_POST); // 入力値の変換 $this->objFormParam->convParam(); $this->arrErr = $this->lfCheckError(); if(count($this->arrErr) == 0) { if ($_POST['mode'] == 'add') { $order_id = $this->lfRegistNewData(); $this->tpl_order_id = $order_id; $this->tpl_mode = 'edit'; $arrData['order_id'] = $order_id; $this->objFormParam->setParam($arrData); $text = "'新規受注を登録しました。'"; } else { $this->lfRegistData($_POST['order_id']); $text = "'受注履歴を編集しました。'"; } // DBから受注情報を再読込 $this->lfGetOrderData($order_id); $this->tpl_onload = "window.alert(".$text.");"; } break; // 再計算 case 'cheek': //支払い方法の選択 case 'payment': // POST情報で上書き $this->objFormParam->setParam($_POST); // 入力値の変換 $this->objFormParam->convParam(); $this->arrErr = $this->lfCheckError(); break; /* 商品削除*/ case 'delete_product': $delete_no = $_POST['delete_no']; foreach ($_POST AS $key=>$val) { if (is_array($val)) { foreach ($val AS $k=>$v) { if ($k != $delete_no) { $arrData[$key][] = $v; } } } else { $arrData[$key] = $val; } } // 情報上書き $this->objFormParam->setParam($arrData); // 入力値の変換 $this->objFormParam->convParam(); $this->arrErr = $this->lfCheckError(); break; /* 商品追加ポップアップより商品選択後、商品情報取得*/ case 'select_product_detail': // POST情報で上書き $this->objFormParam->setParam($_POST); if (!empty($_POST['add_product_class_id'])) { $this->lfInsertProduct($_POST['add_product_class_id']); } elseif (!empty($_POST['edit_product_class_id'])) { $this->lfUpdateProduct($_POST['edit_product_class_id'], $_POST['no']); } $arrData = $_POST; foreach ($this->arrForm AS $key=>$val) { if (is_array($val)) { $arrData[$key] = $this->arrForm[$key]['value']; } else { $arrData[$key] = $val; } } // 情報上書き $this->objFormParam->setParam($arrData); // 入力値の変換 $this->objFormParam->convParam(); $this->arrErr = $this->lfCheckError(); break; /* 顧客検索ポップアップより顧客指定後、顧客情報取得*/ case 'search_customer': // POST情報で上書き $this->objFormParam->setParam($_POST); // 検索結果から顧客IDを指定された場合、顧客情報をフォームに代入する $this->lfSetCustomerInfo($_POST['edit_customer_id']); break; // 複数配送設定表示 case 'multiple': $this->objFormParam->setParam($_POST); $this->tpl_onload = "win03('" . URL_PATH . ADMIN_DIR . "order/multiple.php', 'multiple', '600', '500');"; break; // 複数配送設定を反映 case 'multiple_set_to': $multipleSize = $_POST['multiple_size']; $this->lfInitMultipleParam($multipleSize); $this->objFormParam->setParam($_POST); $this->setMultipleItemTo($multipleSize); break; default: break; } // 支払い方法の取得 $this->arrPayment = $objDb->sfGetIDValueList("dtb_payment", "payment_id", "payment_method"); $this->arrForm = $this->objFormParam->getFormParamList(); // XXX 商品種別IDは0番目の配列を使用 $this->product_type_id = $this->arrForm['product_type_id']['value'][0]; $this->arrDelivTime = $objPurchase->getDelivTime($this->product_type_id); $this->product_count = count($this->arrForm['quantity']['value']); // アンカーを設定 if (isset($_POST['anchor_key']) && !empty($_POST['anchor_key'])) { $anchor_hash = "location.hash='#" . $_POST['anchor_key'] . "'"; } else { $anchor_hash = ""; } $this->tpl_onload .= $anchor_hash; $objSiteInfo = new SC_SiteInfo(); $this->arrInfo = $objSiteInfo->data; // 表示モード判定 if(!$this->disp_mode) { $this->setTemplate(MAIN_FRAME); } else { $this->setTemplate('order/disp.tpl'); } } /** * デストラクタ. * * @return void */ function destroy() { parent::destroy(); } /* パラメータ情報の初期化 */ function lfInitParam() { // お客様情報 $this->objFormParam->addParam("顧客名1", "order_name01", STEXT_LEN, "KVa", array("EXIST_CHECK", "SPTAB_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("顧客名2", "order_name02", STEXT_LEN, "KVa", array("EXIST_CHECK", "SPTAB_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("顧客名カナ1", "order_kana01", STEXT_LEN, "KVCa", array("EXIST_CHECK", "SPTAB_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("顧客名カナ2", "order_kana02", STEXT_LEN, "KVCa", array("EXIST_CHECK", "SPTAB_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("メールアドレス", "order_email", MTEXT_LEN, "KVCa", array("NO_SPTAB", "EMAIL_CHECK", "EMAIL_CHAR_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("郵便番号1", "order_zip01", ZIP01_LEN, "n", array("NUM_CHECK", "NUM_COUNT_CHECK")); $this->objFormParam->addParam("郵便番号2", "order_zip02", ZIP02_LEN, "n", array("NUM_CHECK", "NUM_COUNT_CHECK")); $this->objFormParam->addParam("都道府県", "order_pref", INT_LEN, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("住所1", "order_addr01", MTEXT_LEN, "KVa", array("SPTAB_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("住所2", "order_addr02", MTEXT_LEN, "KVa", array("SPTAB_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("電話番号1", "order_tel01", TEL_ITEM_LEN, "n", array("MAX_LENGTH_CHECK" ,"NUM_CHECK")); $this->objFormParam->addParam("電話番号2", "order_tel02", TEL_ITEM_LEN, "n", array("MAX_LENGTH_CHECK" ,"NUM_CHECK")); $this->objFormParam->addParam("電話番号3", "order_tel03", TEL_ITEM_LEN, "n", array("MAX_LENGTH_CHECK" ,"NUM_CHECK")); // 受注商品情報 $this->objFormParam->addParam("値引き", "discount", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), '0'); $this->objFormParam->addParam("送料", "deliv_fee", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), '0'); $this->objFormParam->addParam("手数料", "charge", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), '0'); // ポイント機能ON時のみ if (USE_POINT !== false) { $this->objFormParam->addParam("利用ポイント", "use_point", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK")); } $this->objFormParam->addParam("お支払い方法", "payment_id", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("対応状況", "status", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("お支払方法名称", "payment_method"); // 受注詳細情報 $this->objFormParam->addParam("商品種別ID", "product_type_id", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), '0'); $this->objFormParam->addParam("単価", "price", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), '0'); $this->objFormParam->addParam("数量", "quantity", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), '0'); $this->objFormParam->addParam("商品ID", "product_id", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), '0'); $this->objFormParam->addParam("商品規格ID", "product_class_id", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), '0'); $this->objFormParam->addParam("ポイント付与率", "point_rate"); $this->objFormParam->addParam("商品コード", "product_code"); $this->objFormParam->addParam("商品名", "product_name"); $this->objFormParam->addParam("規格名1", "classcategory_name1"); $this->objFormParam->addParam("規格名2", "classcategory_name2"); $this->objFormParam->addParam("メモ", "note", MTEXT_LEN, "KVa", array("MAX_LENGTH_CHECK")); // DB読込用 $this->objFormParam->addParam("小計", "subtotal"); $this->objFormParam->addParam("合計", "total"); $this->objFormParam->addParam("支払い合計", "payment_total"); $this->objFormParam->addParam("加算ポイント", "add_point"); $this->objFormParam->addParam("お誕生日ポイント", "birth_point"); $this->objFormParam->addParam("消費税合計", "tax"); $this->objFormParam->addParam("最終保持ポイント", "total_point"); $this->objFormParam->addParam("顧客ID", "customer_id"); $this->objFormParam->addParam("現在のポイント", "point"); $this->objFormParam->addParam("注文番号", "order_id"); $this->objFormParam->addParam("受注日", "create_date"); $this->objFormParam->addParam("発送日", "commit_date"); $this->objFormParam->addParam("備考", "message"); $this->objFormParam->addParam("入金日", "payment_date"); } /** * お届け先用フォームの初期化 */ function lfInitShippingParam(&$arrShipping) { $this->objFormParam->addParam("配送数", "shipping_quantity", INT_LEN, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK")); foreach ($arrShipping as $shipping) { $this->objFormParam->addParam("配送ID", "shipping_id_" . $shipping['shipping_id'], INT_LEN, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("お名前1", "shipping_name01_" . $shipping['shipping_id'], STEXT_LEN, "KVa", array("SPTAB_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("お名前2", "shipping_name02_" . $shipping['shipping_id'], STEXT_LEN, "KVa", array("SPTAB_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("お名前(フリガナ・姓)", "shipping_kana01_" . $shipping['shipping_id'], STEXT_LEN, "KVCa", array("SPTAB_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("お名前(フリガナ・名)", "shipping_kana02_" . $shipping['shipping_id'], STEXT_LEN, "KVCa", array("SPTAB_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("郵便番号1", "shipping_zip01_" . $shipping['shipping_id'], ZIP01_LEN, "n", array("NUM_CHECK", "NUM_COUNT_CHECK")); $this->objFormParam->addParam("郵便番号2", "shipping_zip02_" . $shipping['shipping_id'], ZIP02_LEN, "n", array("NUM_CHECK", "NUM_COUNT_CHECK")); $this->objFormParam->addParam("都道府県", "shipping_pref_" . $shipping['shipping_id'], INT_LEN, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("住所1", "shipping_addr01_" . $shipping['shipping_id'], MTEXT_LEN, "KVa", array("SPTAB_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("住所2", "shipping_addr02_" . $shipping['shipping_id'], MTEXT_LEN, "KVa", array("SPTAB_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("電話番号1", "shipping_tel01_" . $shipping['shipping_id'], TEL_ITEM_LEN, "n", array("MAX_LENGTH_CHECK" ,"NUM_CHECK")); $this->objFormParam->addParam("電話番号2", "shipping_tel02_" . $shipping['shipping_id'], TEL_ITEM_LEN, "n", array("MAX_LENGTH_CHECK" ,"NUM_CHECK")); $this->objFormParam->addParam("電話番号3", "shipping_tel03_" . $shipping['shipping_id'], TEL_ITEM_LEN, "n", array("MAX_LENGTH_CHECK" ,"NUM_CHECK")); $this->objFormParam->addParam("お届け時間ID", "time_id_" . $shipping['shipping_id'], INT_LEN, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("お届け時間", "shipping_time_" . $shipping['shipping_id']); $this->objFormParam->addParam("お届け日(年)", "shipping_date_year_" . $shipping['shipping_id'], INT_LEN, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("お届け日(月)", "shipping_date_month_" . $shipping['shipping_id'], INT_LEN, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("お届け日(日)", "shipping_date_day_" . $shipping['shipping_id'], INT_LEN, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("お届け日", "shipping_date_" . $shipping['shipping_id'], STEXT_LEN, "KVa", array("SPTAB_CHECK", "MAX_LENGTH_CHECK")); $this->objFormParam->addParam("配送商品規格数", "shipping_product_quantity_" . $shipping['shipping_id'], INT_LEN, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK")); foreach ($shipping['shipment_item'] as $productClassId => $item) { $this->objFormParam->addParam("商品規格ID", "product_class_id_" . $shipping['shipping_id'] . '_' . $productClassId, INT_LEN, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("商品コード", "product_code_" . $shipping['shipping_id'] . '_' . $productClassId); $this->objFormParam->addParam("商品名", "product_name_" . $shipping['shipping_id'] . '_' . $productClassId); $this->objFormParam->addParam("規格名1", "classcategory_name1_" . $shipping['shipping_id'] . '_' . $productClassId); $this->objFormParam->addParam("規格名2", "classcategory_name2_" . $shipping['shipping_id'] . '_' . $productClassId); $this->objFormParam->addParam("単価", "price_" . $shipping['shipping_id'] . '_' . $productClassId, INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), '0'); $this->objFormParam->addParam("数量", "quantity_" . $shipping['shipping_id'] . '_' . $productClassId, INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), '0'); } } } /** * 複数配送用フォームの初期化 */ function lfInitMultipleParam($size) { for ($i = 0; $i < $size; $i++) { $this->objFormParam->addParam("商品規格ID", "multiple_product_class_id" . $i, INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK")); $this->objFormParam->addParam("商品コード", "multiple_product_code" . $i, INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), 1); $this->objFormParam->addParam("商品名", "multiple_product_name" . $i, INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), 1); $this->objFormParam->addParam("規格1", "multiple_classcategory_name1" . $i, INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), 1); $this->objFormParam->addParam("規格2", "multiple_classcategory_name2" . $i, INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), 1); $this->objFormParam->addParam("単価", "multiple_price" . $i, INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), 1); $this->objFormParam->addParam("数量", "multiple_quantity" . $i, INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"), 1); $this->objFormParam->addParam("配送先住所", "multiple_shipping" . $i, INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK")); } } function setMultipleItemTo($size) { $arrShipmentItem = array(); for ($i = 0; $i < $size; $i++) { $shippingId = $this->objFormParam->getValue('multiple_shipping' . $i); $productClassId = $this->objFormParam->getValue('multiple_product_class_id' . $i); $name = $this->objFormParam->getValue('multiple_product_name' . $i); $code = $this->objFormParam->getValue('multiple_product_code' . $i); $class1 = $this->objFormParam->getValue('multiple_classcategory_name1' . $i); $class2 = $this->objFormParam->getValue('multiple_classcategory_name2' . $i); $price = $this->objFormParam->getValue('multiple_price' . $i); $quantity = $this->objFormParam->getValue('multiple_quantity' . $i); $arrShipmentItem[$shippingId][$productClassId]['shipping_id'] = $shippingId; $arrShipmentItem[$shippingId][$productClassId]['product_class_id'] = $productClassId; $arrShipmentItem[$shippingId][$productClassId]['classcategory_name1'] = $class1; $arrShipmentItem[$shippingId][$productClassId]['classcategory_name2'] = $class2; $arrShipmentItem[$shippingId][$productClassId]['price'] = $price; $arrShipmentItem[$shippingId][$productClassId]['quantity'] += $quantity; } $this->arrShippingIds = array(); $this->arrProductClassIds = array(); foreach ($arrShipmentItem as $shippingId => $items) { $this->objFormParam->setValue('shipping_product_quantity' . '_' . $shippingId, count($items)); $this->arrShippingIds[] = $shippingId; $this->arrProductClassIds[] = array_keys($items); foreach ($items as $productClassId => $item) { foreach ($item as $itemKey => $itemVal) { $this->objFormParam->setValue($itemKey . '_' . $shippingId . '_' . $productClassId, $itemVal); } } } } function lfGetOrderData($order_id) { if(SC_Utils_Ex::sfIsInt($order_id)) { // DBから受注情報を読み込む $objQuery = new SC_Query(); $objDb = new SC_Helper_DB_Ex(); $where = "order_id = ?"; $arrRet = $objQuery->select("*", "dtb_order", $where, array($order_id)); $this->objFormParam->setParam($arrRet[0]); list($db_point, $rollback_point) = $objDb->sfGetRollbackPoint($order_id, $arrRet[0]['use_point'], $arrRet[0]['add_point']); $this->objFormParam->setValue('total_point', $db_point); $this->objFormParam->setValue('point', $rollback_point); $this->arrForm = $arrRet[0]; // 受注詳細データの取得 $arrRet = $this->lfGetOrderDetail($order_id); $arrRet = SC_Utils_Ex::sfSwapArray($arrRet); $this->arrForm = array_merge($this->arrForm, $arrRet); $this->objFormParam->setParam($arrRet); $this->arrShipping = $this->lfGetShippingData($order_id); $this->lfInitShippingParam($this->arrShipping); $this->objFormParam->setValue('shipping_quantity', count($this->arrShipping)); // 配送情報の処理 foreach ($this->arrShipping as $shipping) { $this->arrShippingIds[] = $shipping['shipping_id']; $this->arrProductClassIds[] = array_keys($shipping['shipment_item']); // お届け日の取得 if (!SC_Utils_Ex::isBlank($shipping["shipping_date"])) { $ts = strtotime($shipping["shipping_date"]); $this->objFormParam->setValue('shipping_date_year_' . $shipping['shipping_id'], date("Y", $ts)); $this->objFormParam->setValue('shipping_date_month_' . $shipping['shipping_id'], date("n", $ts)); $this->objFormParam->setValue('shipping_date_day_' . $shipping['shipping_id'], date("j", $ts)); } // 配送内容の処理 foreach ($shipping as $shippingKey => $shippingVal) { $this->objFormParam->setValue($shippingKey . '_' . $shipping['shipping_id'], $shippingVal); $this->objFormParam->setValue('shipping_product_quantity' . '_' . $shipping['shipping_id'], count($shipping['shipment_item'])); // 配送商品の処理 foreach ($shipping['shipment_item'] as $productClassId => $item) { foreach ($item as $itemKey => $itemVal) { $this->objFormParam->setValue($itemKey . '_' . $shipping['shipping_id'] . '_' . $productClassId, $itemVal); } } } } // その他支払い情報を表示 if($this->arrForm["memo02"] != "") $this->arrForm["payment_info"] = unserialize($this->arrForm["memo02"]); if($this->arrForm["memo01"] == PAYMENT_CREDIT_ID){ $this->arrForm["payment_type"] = "クレジット決済"; }elseif($this->arrForm["memo01"] == PAYMENT_CONVENIENCE_ID){ $this->arrForm["payment_type"] = "コンビニ決済"; }else{ $this->arrForm["payment_type"] = "お支払い"; } // 受注データを表示用配列に代入(各EC-CUBEバージョンと決済モジュールとのデータ連携保全のため) $this->arrDisp = $this->arrForm; } } // 受注詳細データの取得 function lfGetOrderDetail($order_id) { $objQuery = new SC_Query(); $from = <<< __EOS__ dtb_order_detail T1 JOIN dtb_products_class T2 ON T1.product_class_id = T2.product_class_id __EOS__; $arrRet = $objQuery->select("T1.*, T2.product_type_id", $from, "order_id = ?", array($order_id)); return $arrRet; } /** * 配送情報の取得. * TODO リファクタリング */ function lfGetShippingData($orderId) { $objQuery =& SC_Query::getSingletonInstance(); $objProduct = new SC_Product(); $objQuery->setOrder('shipping_id'); $arrRet = $objQuery->select("*", "dtb_shipping", "order_id = ?", array($orderId)); foreach (array_keys($arrRet) as $key) { $objQuery->setOrder('shipping_id'); $arrItems = $objQuery->select("*", "dtb_shipment_item", "order_id = ? AND shipping_id = ?", array($orderId, $arrRet[$key]['shipping_id'])); foreach ($arrItems as $itemKey => $arrDetail) { foreach ($arrDetail as $detailKey => $detailVal) { $arrRet[$key]['shipment_item'][$arrDetail['product_class_id']][$detailKey] = $detailVal; } $arrRet[$key]['shipment_item'][$arrDetail['product_class_id']]['productsClass'] =& $objProduct->getDetailAndProductsClass($arrDetail['product_class_id']); } } return $arrRet; } /* 入力内容のチェック */ function lfCheckError() { // 入力データを渡す。 $arrRet = $this->objFormParam->getHashArray(); $objErr = new SC_CheckError($arrRet); $objErr->arrErr = $this->objFormParam->checkError(); if (count($objErr->arrErr) >= 1) { return $objErr->arrErr; } return $this->lfCheek(); } /* 計算処理 */ function lfCheek() { $objDb = new SC_Helper_DB_Ex(); $arrVal = $this->objFormParam->getHashArray(); $arrErr = array(); // 商品の種類数 $max = count($arrVal['quantity']); $subtotal = 0; $totalpoint = 0; $totaltax = 0; for($i = 0; $i < $max; $i++) { // 小計の計算 $subtotal += SC_Helper_DB_Ex::sfCalcIncTax($arrVal['price'][$i]) * $arrVal['quantity'][$i]; // 小計の計算 $totaltax += SC_Helper_DB_Ex::sfTax($arrVal['price'][$i]) * $arrVal['quantity'][$i]; // 加算ポイントの計算 $totalpoint += SC_Utils_Ex::sfPrePoint($arrVal['price'][$i], $arrVal['point_rate'][$i]) * $arrVal['quantity'][$i]; } // 消費税 $arrVal['tax'] = $totaltax; // 小計 $arrVal['subtotal'] = $subtotal; // 合計 $arrVal['total'] = $subtotal - $arrVal['discount'] + $arrVal['deliv_fee'] + $arrVal['charge']; // お支払い合計 $arrVal['payment_total'] = $arrVal['total'] - ($arrVal['use_point'] * POINT_VALUE); // 加算ポイント $arrVal['add_point'] = SC_Helper_DB_Ex::sfGetAddPoint($totalpoint, $arrVal['use_point']); // 最終保持ポイント $arrVal['total_point'] = $this->objFormParam->getValue('point') - $arrVal['use_point'] + $arrVal['add_point']; if ($arrVal['total'] < 0) { $arrErr['total'] = '合計額がマイナス表示にならないように調整して下さい。
'; } if ($arrVal['payment_total'] < 0) { $arrErr['payment_total'] = 'お支払い合計額がマイナス表示にならないように調整して下さい。
'; } //新規追加受注のみ if ($_POST['mode'] == "add") { if ($arrVal['total_point'] < 0) { $arrErr['use_point'] = '最終保持ポイントがマイナス表示にならないように調整して下さい。
'; } } $this->objFormParam->setParam($arrVal); return $arrErr; } /** * DB更新処理 * * @param integer $order_id 注文番号 * @return void */ function lfRegistData($order_id) { $objQuery = new SC_Query(); $sqlval = $this->lfMakeSqlvalForDtbOrder(); $where = "order_id = ?"; $objQuery->begin(); // 受注.対応状況の更新 SC_Helper_DB_Ex::sfUpdateOrderStatus($order_id, $sqlval['status'], $sqlval['add_point'], $sqlval['use_point']); unset($sqlval['status']); unset($sqlval['add_point']); unset($sqlval['use_point']); // 受注テーブルの更新 $this->registerOrder($sqlval, $order_id); // 受注テーブルの名称列を更新 //SC_Helper_DB_Ex::sfUpdateOrderNameCol($order_id); $arrDetail = $this->objFormParam->getSwapArray(array("product_id", "product_class_id", "product_code", "product_name", "price", "quantity", "point_rate", "classcategory_name1", "classcategory_name2")); // 変更しようとしている商品情報とDBに登録してある商品情報を比較することで、更新すべき数量を計算 $max = count($arrDetail); $k = 0; $arrStockData = array(); for($i = 0; $i < $max; $i++) { if (!empty($arrDetail[$i]['product_id'])) { $arrPreDetail = $objQuery->select('*', "dtb_order_detail", "order_id = ? AND product_class_id = ?", array($order_id, $arrDetail[$i]['product_class_id'])); if (!empty($arrPreDetail) && $arrPreDetail[0]['quantity'] != $arrDetail[$i]['quantity']) { // 数量が変更された商品 $arrStockData[$k]['product_class_id'] = $arrDetail[$i]['product_class_id']; $arrStockData[$k]['quantity'] = $arrPreDetail[0]['quantity'] - $arrDetail[$i]['quantity']; ++$k; } elseif (empty($arrPreDetail)) { // 新しく追加された商品 もしくは 違う商品に変更された商品 $arrStockData[$k]['product_class_id'] = $arrDetail[$i]['product_class_id']; $arrStockData[$k]['quantity'] = -$arrDetail[$i]['quantity']; ++$k; } $objQuery->delete("dtb_order_detail", "order_id = ? AND product_class_id = ?", array($order_id, $arrDetail[$i]['product_class_id'])); } } // 上記の新しい商品のループでDELETEされなかった商品は、注文より削除された商品 $arrPreDetail = $objQuery->select('*', "dtb_order_detail", "order_id = ?", array($order_id)); foreach ($arrPreDetail AS $key=>$val) { $arrStockData[$k]['product_class_id'] = $val['product_class_id']; $arrStockData[$k]['quantity'] = $val['quantity']; ++$k; } // 受注詳細データの初期化 $objQuery->delete("dtb_order_detail", $where, array($order_id)); // 受注詳細データの更新 $max = count($arrDetail); for ($i = 0; $i < $max; $i++) { $sqlval = array(); $sqlval['order_id'] = $order_id; $sqlval['product_id'] = $arrDetail[$i]['product_id']; $sqlval['product_class_id'] = $arrDetail[$i]['product_class_id']; $sqlval['product_code'] = $arrDetail[$i]['product_code']; $sqlval['product_name'] = $arrDetail[$i]['product_name']; $sqlval['price'] = $arrDetail[$i]['price']; $sqlval['quantity'] = $arrDetail[$i]['quantity']; $sqlval['point_rate'] = $arrDetail[$i]['point_rate']; $sqlval['classcategory_name1'] = $arrDetail[$i]['classcategory_name1']; $sqlval['classcategory_name2'] = $arrDetail[$i]['classcategory_name2']; $objQuery->insert("dtb_order_detail", $sqlval); } // 在庫数調整 $status = $sqlval['status']; if (ORDER_DELIV != $status && ORDER_CANCEL != $status) { $stock_sql = "UPDATE dtb_products_class SET stock = stock + ? WHERE product_class_id = ?"; foreach ($arrStockData AS $key=>$val) { $stock_sqlval = array(); $stock_sqlval[] = $val['quantity']; $stock_sqlval[] = $val['product_class_id']; $objQuery->query($stock_sql, $stock_sqlval); } } $objQuery->commit(); } /** * DB登録処理 * * @return integer 注文番号 */ function lfRegistNewData() { $objQuery = new SC_Query(); $sqlval = $this->lfMakeSqlvalForDtbOrder(); // ポイントは別登録 $addPoint = $sqlval['add_point']; $usePoint = $sqlval['use_point']; $sqlval['add_point'] = 0; $sqlval['use_point'] = 0; // customer_id if ($sqlval["customer_id"] == "") { $sqlval['customer_id'] = '0'; } $sqlval['create_date'] = 'Now()'; // 受注日 $objQuery->begin(); // 受注テーブルの登録 $order_id = $objQuery->nextVal('dtb_order_order_id'); $sqlval['order_id'] = $order_id; $objQuery->insert("dtb_order", $sqlval); // 受注.対応状況の更新 SC_Helper_DB_Ex::sfUpdateOrderStatus($order_id, null, $addPoint, $usePoint); // 受注テーブルの名称列を更新 SC_Helper_DB_Ex::sfUpdateOrderNameCol($order_id); // 受注詳細データの更新 $arrDetail = $this->objFormParam->getSwapArray(array("product_id", "product_class_id", "product_code", "product_name", "price", "quantity", "point_rate", "classcategory_name1", "classcategory_name2")); $objQuery->delete("dtb_order_detail", 'order_id = ?', array($order_id)); $max = count($arrDetail); for ($i = 0; $i < $max; $i++) { $sqlval = array(); $sqlval['order_id'] = $order_id; $sqlval['product_id'] = $arrDetail[$i]['product_id']; $sqlval['product_class_id'] = $arrDetail[$i]['product_class_id']; $sqlval['product_code'] = $arrDetail[$i]['product_code']; $sqlval['product_name'] = $arrDetail[$i]['product_name']; $sqlval['price'] = $arrDetail[$i]['price']; $sqlval['quantity'] = $arrDetail[$i]['quantity']; $sqlval['point_rate'] = $arrDetail[$i]['point_rate']; $sqlval['classcategory_name1'] = $arrDetail[$i]['classcategory_name1']; $sqlval['classcategory_name2'] = $arrDetail[$i]['classcategory_name2']; $objQuery->insert("dtb_order_detail", $sqlval); // 在庫数減少処理 // 現在の実在庫数取得 $pre_stock = $objQuery->getOne("SELECT stock FROM dtb_products_class WHERE product_class_id = ?", array($arrDetail[$i]['product_class_id'])); $stock_sqlval = array(); $stock_sqlval['stock'] = intval($pre_stock - $arrDetail[$i]['quantity']); if ($stock_sqlval['stock'] === 0) { $stock_sqlval['stock'] = '0'; } $st_params = array(); $st_params[] = $arrDetail[$i]['product_class_id']; $objQuery->update("dtb_products_class", $stock_sqlval, 'product_class_id = ?', $st_params); } $objQuery->commit(); return $order_id; } /** * 受注を登録する */ function registerOrder($sqlval, $order_id) { $table = 'dtb_order'; $objQuery = SC_Query::getSingletonInstance(); $cols = $objQuery->listTableFields($table); $dest = array(); foreach ($sqlval as $key => $val) { if (in_array($cols, $key)) { $dest[$key] = $val; } } $result = $objQuery->update($table, $dest, "order_id = ?", array($order_id)); if ($result == 0) { $dest['order_id'] = $order_id; $result = $objQuery->insert($table, $dest); } } function lfInsertProduct($product_class_id) { $objProduct = new SC_Product(); $arrProduct = $this->lfGetProductsClass($objProduct->getDetailAndProductsClass($product_class_id)); $this->arrForm = $this->objFormParam->getFormParamList(); $existes = false; $existes_key = NULL; // 既に同じ商品がないか、確認する if (!empty($this->arrForm['product_class_id']['value'])) { foreach ($this->arrForm['product_class_id']['value'] AS $key=>$val) { // 既に同じ商品がある場合 if ($val == $product_class_id) { $existes = true; $existes_key = $key; } } } if ($existes) { // 既に同じ商品がある場合 ++$this->arrForm['quantity']['value'][$existes_key]; } else { // 既に同じ商品がない場合 $this->lfSetProductData($arrProduct); } } function lfUpdateProduct($product_class_id, $no) { $objProduct = new SC_Product(); $arrProduct = $this->lfGetProductsClass($objProduct->getDetailAndProductsClass($product_class_id)); $this->arrForm = $this->objFormParam->getFormParamList(); $this->lfSetProductData($arrProduct, $no); } function lfSetProductData($arrProduct, $no = null) { foreach ($arrProduct AS $key=>$val) { if (!is_array($this->arrForm[$key]['value'])) { unset($this->arrForm[$key]['value']); } if ($no === null) { $this->arrForm[$key]['value'][] = $val; } else { $this->arrForm[$key]['value'][$no] = $val; } } } function lfGetProductsClass($productsClass) { $arrProduct['price'] = $productsClass['price02']; $arrProduct['quantity'] = 1; $arrProduct['product_id'] = $productsClass['product_id']; $arrProduct['product_class_id'] = $productsClass['product_class_id']; $arrProduct['point_rate'] = $productsClass['point_rate']; $arrProduct['product_code'] = $productsClass['product_code']; $arrProduct['product_name'] = $productsClass['name']; $arrProduct['classcategory_name1'] = $productsClass['classcategory_name1']; $arrProduct['classcategory_name2'] = $productsClass['classcategory_name2']; return $arrProduct; } /** * 検索結果から顧客IDを指定された場合、顧客情報をフォームに代入する * @param int $edit_customer_id 顧客ID */ function lfSetCustomerInfo($edit_customer_id = ""){ // 顧客IDが指定されている場合のみ、処理を実行する if( $edit_customer_id === "" ) return ; // 検索で選択された顧客IDが入力されている場合 if( is_null($edit_customer_id) === false && 0 < strlen($edit_customer_id) && SC_Utils_Ex::sfIsInt($edit_customer_id) ){ $objQuery = new SC_Query(); // 顧客情報を取得する $arrCustomerInfo = $objQuery->select('*', 'dtb_customer', 'customer_id = ? AND del_flg = 0', array($edit_customer_id)); // 顧客情報を取得する事が出来たら、テンプレートに値を渡す if( 0 < count($arrCustomerInfo) && is_array($arrCustomerInfo) === true){ // カラム名にorder_を付ける(テンプレート側でorder_がついている為 foreach($arrCustomerInfo[0] as $index=>$customer_info){ // customer_idにはorder_を付けないようにする $order_index = ($index == 'customer_id') ? $index : 'order_'.$index; $arrCustomer[$order_index] = $customer_info; } } // hiddenに渡す $this->edit_customer_id = $edit_customer_id; // 受注日に現在の時刻を取得し、表示させる $create_date = $objQuery->getAll('SELECT now() as create_date;'); $arrCustomer['create_date'] = $create_date[0]['create_date']; // 情報上書き $this->objFormParam->setParam($arrCustomer); // 入力値の変換 $this->objFormParam->convParam(); } } /** * 受注テーブルの登録・更新用データの共通部分を作成する * * @return array */ function lfMakeSqlvalForDtbOrder() { // 入力データを取得する $sqlval = $this->objFormParam->getHashArray(); foreach ($sqlval as $key => $val) { // 配列は登録しない if (is_array($val)) { unset($sqlval[$key]); } } // 受注テーブルに書き込まない列を除去 unset($sqlval['total_point']); unset($sqlval['point']); unset($sqlval['commit_date']); // 更新日時 $sqlval['update_date'] = 'Now()'; return $sqlval; } } ?>