sfGetDBVersion($dsn); } /** * カラムの存在チェックと作成を行う. * * チェック対象のテーブルに, 該当のカラムが存在するかチェックする. * 引数 $add が true の場合, 該当のカラムが存在しない場合は, カラムの生成を行う. * カラムの生成も行う場合は, $col_type も必須となる. * * @param string $table_name テーブル名 * @param string $column_name カラム名 * @param string $col_type カラムのデータ型 * @param string $dsn データソース名 * @param bool $add カラムの作成も行う場合 true * @return bool カラムが存在する場合とカラムの生成に成功した場合 true, * テーブルが存在しない場合 false, * 引数 $add == false でカラムが存在しない場合 false */ function sfColumnExists($table_name, $col_name, $col_type = "", $dsn = "", $add = false) { $dbFactory = SC_DB_DBFactory_Ex::getInstance(); $dsn = $dbFactory->getDSN($dsn); $objQuery =& SC_Query_Ex::getSingletonInstance($dsn); // テーブルが無ければエラー if(!in_array($table_name, $objQuery->listTables())) return false; // 正常に接続されている場合 if(!$objQuery->isError()) { list($db_type) = explode(":", $dsn); // カラムリストを取得 $columns = $objQuery->listTableFields($table_name); if(in_array($col_name, $columns)){ return true; } } // カラムを追加する if($add){ $objQuery->query("ALTER TABLE $table_name ADD $col_name $col_type "); return true; } return false; } /** * データの存在チェックを行う. * * @param string $table_name テーブル名 * @param string $where データを検索する WHERE 句 * @param string $dsn データソース名 * @param string $sql データの追加を行う場合の SQL文 * @param bool $add データの追加も行う場合 true * @return bool データが存在する場合 true, データの追加に成功した場合 true, * $add == false で, データが存在しない場合 false */ function sfDataExists($table_name, $where, $arrval, $dsn = "", $sql = "", $add = false) { $dbFactory = SC_DB_DBFactory_Ex::getInstance(); $dsn = $dbFactory->getDSN($dsn); $objQuery =& SC_Query_Ex::getSingletonInstance(); $count = $objQuery->count($table_name, $where, $arrval); if($count > 0) { $ret = true; } else { $ret = false; } // データを追加する if(!$ret && $add) { $objQuery->exec($sql); } return $ret; } /** * 店舗基本情報を取得する. * * 引数 $force が false の場合は, 初回のみ DB 接続し, * 2回目以降はキャッシュされた結果を使用する. * * @param boolean $force 強制的にDB取得するか * @param string $col 取得カラムを指定する * @return array 店舗基本情報の配列 */ function sfGetBasisData($force = false, $col = "") { static $data; if ($force || !isset($data)) { $objQuery =& SC_Query_Ex::getSingletonInstance(); if ($col === "") { $arrRet = $objQuery->select('*', 'dtb_baseinfo'); } else { $arrRet = $objQuery->select($col, "dtb_baseinfo"); } if (isset($arrRet[0])) { $data = $arrRet[0]; } else { $data = array(); } } return $data; } /** * 基本情報の登録数を取得する * * @return int */ function sfGetBasisCount() { $objQuery =& SC_Query_Ex::getSingletonInstance(); return $objQuery->count("dtb_baseinfo"); } /* 選択中のアイテムのルートカテゴリIDを取得する */ function sfGetRootId() { if(!$this->g_root_on) { $this->g_root_on = true; $objQuery =& SC_Query_Ex::getSingletonInstance(); if (!isset($_GET['product_id'])) $_GET['product_id'] = ""; if (!isset($_GET['category_id'])) $_GET['category_id'] = ""; if(!empty($_GET['product_id']) || !empty($_GET['category_id'])) { // 選択中のカテゴリIDを判定する $category_id = $this->sfGetCategoryId($_GET['product_id'], $_GET['category_id']); // ROOTカテゴリIDの取得 $arrRet = $this->sfGetParents('dtb_category', 'parent_category_id', 'category_id', $category_id); $root_id = isset($arrRet[0]) ? $arrRet[0] : ""; } else { // ROOTカテゴリIDをなしに設定する $root_id = ""; } $this->g_root_id = $root_id; } return $this->g_root_id; } /** * 受注番号、最終ポイント、加算ポイント、利用ポイントから「オーダー前ポイント」を取得する * * @param integer $order_id 受注番号 * @param integer $use_point 利用ポイント * @param integer $add_point 加算ポイント * @return array オーダー前ポイントの配列 */ function sfGetRollbackPoint($order_id, $use_point, $add_point) { $objQuery = new SC_Query_Ex(); $arrRet = $objQuery->select("customer_id", "dtb_order", "order_id = ?", array($order_id)); $customer_id = $arrRet[0]['customer_id']; if($customer_id != "" && $customer_id >= 1) { $arrRet = $objQuery->select('point', "dtb_customer", "customer_id = ?", array($customer_id)); $point = $arrRet[0]['point']; $rollback_point = $arrRet[0]['point'] + $use_point - $add_point; } else { $rollback_point = ""; $point = ""; } return array($point, $rollback_point); } /** * カテゴリツリーの取得を行う. * * @param integer $parent_category_id 親カテゴリID * @param bool $count_check 登録商品数のチェックを行う場合 true * @return array カテゴリツリーの配列 */ function sfGetCatTree($parent_category_id, $count_check = false) { $objQuery =& SC_Query_Ex::getSingletonInstance(); $col = ""; $col .= " cat.category_id,"; $col .= " cat.category_name,"; $col .= " cat.parent_category_id,"; $col .= " cat.level,"; $col .= " cat.rank,"; $col .= " cat.creator_id,"; $col .= " cat.create_date,"; $col .= " cat.update_date,"; $col .= " cat.del_flg, "; $col .= " ttl.product_count"; $from = "dtb_category as cat left join dtb_category_total_count as ttl on ttl.category_id = cat.category_id"; // 登録商品数のチェック if($count_check) { $where = "del_flg = 0 AND product_count > 0"; } else { $where = "del_flg = 0"; } $objQuery->setOption("ORDER BY rank DESC"); $arrRet = $objQuery->select($col, $from, $where); $arrParentID = SC_Helper_DB_Ex::sfGetParents('dtb_category', 'parent_category_id', 'category_id', $parent_category_id); foreach($arrRet as $key => $array) { foreach($arrParentID as $val) { if($array['category_id'] == $val) { $arrRet[$key]['display'] = 1; break; } } } return $arrRet; } /** * カテゴリツリーを走査し, パンくずリスト用の配列を生成する. * * @param array カテゴリの配列 * @param integer $parent 上位カテゴリID * @param array パンくずリスト用の配列 * @result void * @see sfGetCatTree() */ function findTree(&$arrTree, $parent, &$result) { if ($result[count($result) - 1]['parent_category_id'] === 0) { return; } else { foreach ($arrTree as $key => $val) { if ($val['category_id'] == $parent) { $result[] = array('category_id' => $val['category_id'], 'parent_category_id' => (int) $val['parent_category_id'], 'category_name' => $val['category_name']); $this->findTree($arrTree, $val['parent_category_id'], $result); } } } } /** * カテゴリツリーの取得を複数カテゴリーで行う. * * @param integer $product_id 商品ID * @param bool $count_check 登録商品数のチェックを行う場合 true * @return array カテゴリツリーの配列 */ function sfGetMultiCatTree($product_id, $count_check = false) { $objQuery =& SC_Query_Ex::getSingletonInstance(); $col = ""; $col .= " cat.category_id,"; $col .= " cat.category_name,"; $col .= " cat.parent_category_id,"; $col .= " cat.level,"; $col .= " cat.rank,"; $col .= " cat.creator_id,"; $col .= " cat.create_date,"; $col .= " cat.update_date,"; $col .= " cat.del_flg, "; $col .= " ttl.product_count"; $from = "dtb_category as cat left join dtb_category_total_count as ttl on ttl.category_id = cat.category_id"; // 登録商品数のチェック if($count_check) { $where = "del_flg = 0 AND product_count > 0"; } else { $where = "del_flg = 0"; } $objQuery->setOption("ORDER BY rank DESC"); $arrRet = $objQuery->select($col, $from, $where); $arrCategory_id = SC_Helper_DB_Ex::sfGetCategoryId($product_id); $arrCatTree = array(); foreach ($arrCategory_id as $pkey => $parent_category_id) { $arrParentID = SC_Helper_DB_Ex::sfGetParents('dtb_category', 'parent_category_id', 'category_id', $parent_category_id); foreach($arrParentID as $pid) { foreach($arrRet as $key => $array) { if($array['category_id'] == $pid) { $arrCatTree[$pkey][] = $arrRet[$key]; break; } } } } return $arrCatTree; } /** * 親カテゴリーを連結した文字列を取得する. * * @param integer $category_id カテゴリID * @return string 親カテゴリーを連結した文字列 */ function sfGetCatCombName($category_id){ // 商品が属するカテゴリIDを縦に取得 $objQuery =& SC_Query_Ex::getSingletonInstance(); $arrCatID = $this->sfGetParents("dtb_category", "parent_category_id", "category_id", $category_id); $ConbName = ""; // カテゴリー名称を取得する foreach($arrCatID as $key => $val){ $sql = "SELECT category_name FROM dtb_category WHERE category_id = ?"; $arrVal = array($val); $CatName = $objQuery->getOne($sql,$arrVal); $ConbName .= $CatName . ' | '; } // 最後の | をカットする $ConbName = substr_replace($ConbName, "", strlen($ConbName) - 2, 2); return $ConbName; } /** * 指定したカテゴリーIDのカテゴリーを取得する. * * @param integer $category_id カテゴリID * @return array 指定したカテゴリーIDのカテゴリー */ function sfGetCat($category_id){ $objQuery =& SC_Query_Ex::getSingletonInstance(); // カテゴリーを取得する $arrVal = array($category_id); $res = $objQuery->select('category_id AS id, category_name AS name', 'dtb_category', 'category_id = ?', $arrVal); return $res[0]; } /** * 指定したカテゴリーIDの大カテゴリーを取得する. * * @param integer $category_id カテゴリID * @return array 指定したカテゴリーIDの大カテゴリー */ function sfGetFirstCat($category_id){ // 商品が属するカテゴリIDを縦に取得 $objQuery =& SC_Query_Ex::getSingletonInstance(); $arrRet = array(); $arrCatID = $this->sfGetParents("dtb_category", "parent_category_id", "category_id", $category_id); $arrRet['id'] = $arrCatID[0]; // カテゴリー名称を取得する $sql = "SELECT category_name FROM dtb_category WHERE category_id = ?"; $arrVal = array($arrRet['id']); $arrRet['name'] = $objQuery->getOne($sql,$arrVal); return $arrRet; } /** * カテゴリツリーの取得を行う. * * $products_check:true商品登録済みのものだけ取得する * * @param string $addwhere 追加する WHERE 句 * @param bool $products_check 商品の存在するカテゴリのみ取得する場合 true * @param string $head カテゴリ名のプレフィックス文字列 * @return array カテゴリツリーの配列 */ function sfGetCategoryList($addwhere = "", $products_check = false, $head = CATEGORY_HEAD) { $objQuery =& SC_Query_Ex::getSingletonInstance(); $where = "del_flg = 0"; if($addwhere != "") { $where.= " AND $addwhere"; } $objQuery->setOption("ORDER BY rank DESC"); if($products_check) { $col = "T1.category_id, category_name, level"; $from = "dtb_category AS T1 LEFT JOIN dtb_category_total_count AS T2 ON T1.category_id = T2.category_id"; $where .= " AND product_count > 0"; } else { $col = "category_id, category_name, level"; $from = "dtb_category"; } $arrRet = $objQuery->select($col, $from, $where); $max = count($arrRet); for($cnt = 0; $cnt < $max; $cnt++) { $id = $arrRet[$cnt]['category_id']; $name = $arrRet[$cnt]['category_name']; $arrList[$id] = str_repeat($head, $arrRet[$cnt]['level']) . $name; } return $arrList; } /** * カテゴリーツリーの取得を行う. * * 親カテゴリの Value=0 を対象とする * * @param bool $parent_zero 親カテゴリの Value=0 の場合 true * @return array カテゴリツリーの配列 */ function sfGetLevelCatList($parent_zero = true) { $objQuery =& SC_Query_Ex::getSingletonInstance(); // カテゴリ名リストを取得 $col = "category_id, parent_category_id, category_name"; $where = "del_flg = 0"; $objQuery->setOption("ORDER BY level"); $arrRet = $objQuery->select($col, "dtb_category", $where); $arrCatName = array(); foreach ($arrRet as $arrTmp) { $arrCatName[$arrTmp['category_id']] = (($arrTmp['parent_category_id'] > 0)? $arrCatName[$arrTmp['parent_category_id']] : "") . CATEGORY_HEAD . $arrTmp['category_name']; } $col = "category_id, parent_category_id, category_name, level"; $where = "del_flg = 0"; $objQuery->setOption("ORDER BY rank DESC"); $arrRet = $objQuery->select($col, "dtb_category", $where); $max = count($arrRet); for($cnt = 0; $cnt < $max; $cnt++) { if($parent_zero) { if($arrRet[$cnt]['level'] == LEVEL_MAX) { $arrValue[$cnt] = $arrRet[$cnt]['category_id']; } else { $arrValue[$cnt] = ""; } } else { $arrValue[$cnt] = $arrRet[$cnt]['category_id']; } $arrOutput[$cnt] = $arrCatName[$arrRet[$cnt]['category_id']]; } return array($arrValue, $arrOutput); } /** * 選択中の商品のカテゴリを取得する. * * @param integer $product_id プロダクトID * @param integer $category_id カテゴリID * @return array 選択中の商品のカテゴリIDの配列 * */ function sfGetCategoryId($product_id, $category_id = 0, $closed = false) { if ($closed) { $status = ""; } else { $status = "status = 1"; } $category_id = (int) $category_id; $product_id = (int) $product_id; if (SC_Utils_Ex::sfIsInt($category_id) && $category_id != 0 && SC_Helper_DB_Ex::sfIsRecord("dtb_category","category_id", $category_id)) { $category_id = array($category_id); } else if (SC_Utils_Ex::sfIsInt($product_id) && $product_id != 0 && SC_Helper_DB_Ex::sfIsRecord("dtb_products","product_id", $product_id, $status)) { $objQuery =& SC_Query_Ex::getSingletonInstance(); $where = "product_id = ?"; $category_id = $objQuery->getCol("category_id", "dtb_product_categories", "product_id = ?", array($product_id)); } else { // 不正な場合は、空の配列を返す。 $category_id = array(); } return $category_id; } /** * 商品をカテゴリの先頭に追加する. * * @param integer $category_id カテゴリID * @param integer $product_id プロダクトID * @return void */ function addProductBeforCategories($category_id, $product_id) { $sqlval = array("category_id" => $category_id, "product_id" => $product_id); $objQuery =& SC_Query_Ex::getSingletonInstance(); // 現在の商品カテゴリを取得 $arrCat = $objQuery->select("product_id, category_id, rank", "dtb_product_categories", "category_id = ?", array($category_id)); $max = "0"; foreach ($arrCat as $val) { // 同一商品が存在する場合は登録しない if ($val["product_id"] == $product_id) { return; } // 最上位ランクを取得 $max = ($max < $val['rank']) ? $val['rank'] : $max; } $sqlval['rank'] = $max + 1; $objQuery->insert("dtb_product_categories", $sqlval); } /** * 商品をカテゴリの末尾に追加する. * * @param integer $category_id カテゴリID * @param integer $product_id プロダクトID * @return void */ function addProductAfterCategories($category_id, $product_id) { $sqlval = array("category_id" => $category_id, "product_id" => $product_id); $objQuery =& SC_Query_Ex::getSingletonInstance(); // 現在の商品カテゴリを取得 $arrCat = $objQuery->select("product_id, category_id, rank", "dtb_product_categories", "category_id = ?", array($category_id)); $min = 0; foreach ($arrCat as $val) { // 同一商品が存在する場合は登録しない if ($val["product_id"] == $product_id) { return; } // 最下位ランクを取得 $min = ($min < $val['rank']) ? $val['rank'] : $min; } $sqlval['rank'] = $min; $objQuery->insert("dtb_product_categories", $sqlval); } /** * 商品をカテゴリから削除する. * * @param integer $category_id カテゴリID * @param integer $product_id プロダクトID * @return void */ function removeProductByCategories($category_id, $product_id) { $objQuery =& SC_Query_Ex::getSingletonInstance(); $objQuery->delete("dtb_product_categories", "category_id = ? AND product_id = ?", array($category_id, $product_id)); } /** * 商品カテゴリを更新する. * * @param array $arrCategory_id 登録するカテゴリIDの配列 * @param integer $product_id プロダクトID * @return void */ function updateProductCategories($arrCategory_id, $product_id) { $objQuery =& SC_Query_Ex::getSingletonInstance(); // 現在のカテゴリ情報を取得 $arrCurrentCat = $objQuery->select("product_id, category_id, rank", "dtb_product_categories", "product_id = ?", array($product_id)); // 登録するカテゴリ情報と比較 foreach ($arrCurrentCat as $val) { // 登録しないカテゴリを削除 if (!in_array($val["category_id"], $arrCategory_id)) { $this->removeProductByCategories($val["category_id"], $product_id); } } // カテゴリを登録 foreach ($arrCategory_id as $category_id) { $this->addProductBeforCategories($category_id, $product_id); } } /** * カテゴリ数の登録を行う. * * * @param SC_Query $objQuery SC_Query インスタンス * @param boolean $is_force_all_count 全カテゴリの集計を強制する場合 true * @return void */ function sfCountCategory($objQuery = NULL, $is_force_all_count = false){ $objProduct = new SC_Product_Ex(); if($objQuery == NULL) { $objQuery =& SC_Query_Ex::getSingletonInstance(); } $is_out_trans = false; if(!$objQuery->inTransaction()){ $objQuery->begin(); $is_out_trans = true; } //共通のfrom/where文の構築 $sql_where = 'alldtl.del_flg = 0 AND alldtl.status = 1'; // 在庫無し商品の非表示 if (NOSTOCK_HIDDEN === true) { $sql_where_dtl = 'stock_max >= 1 OR stock_unlimited_max = 1'; $from = $objProduct->alldtlSQL($sql_where_dtl); }else{ $from = " dtb_products as alldtl "; } //dtb_category_countの構成 // 各カテゴリに所属する商品の数を集計。集計対象には子カテゴリを含まない。 // 2.5で消える予定だったが復活させます。DELETE処理は無くしました。 //まずテーブル内容の元を取得 if(!$is_force_all_count) { $arrCategoryCountOld = $objQuery->select('category_id,product_count','dtb_category_count'); }else{ $arrCategoryCountOld = array(); } //各カテゴリ内の商品数を数えて取得 $sql = <<< __EOS__ SELECT T1.category_id, count(T2.category_id) as product_count FROM dtb_category AS T1 LEFT JOIN dtb_product_categories AS T2 ON T1.category_id = T2.category_id LEFT JOIN $from ON T2.product_id = alldtl.product_id WHERE $sql_where GROUP BY T1.category_id, T2.category_id __EOS__; $arrCategoryCountNew = $objQuery->getAll($sql); // 各カテゴリに所属する商品の数を集計。集計対象には子カテゴリを「含む」。 //差分を取得して、更新対象カテゴリだけを確認する。 //各カテゴリ毎のデータ値において以前との差を見る //古いデータの構造入れ替え $arrOld = array(); foreach($arrCategoryCountOld as $item){ $arrOld[$item['category_id']] = $item['product_count']; } //新しいデータの構造入れ替え $arrNew = array(); foreach($arrCategoryCountNew as $item){ $arrNew[$item['category_id']] = $item['product_count']; } $arrDiffCategory_id = array(); //新しいカテゴリ一覧から見て商品数が異なるデータが無いか確認 foreach($arrNew as $cid => $count){ if($arrOld[$cid] != $count){ $arrDiffCategory_id[] = $cid; } } //削除カテゴリを想定して、古いカテゴリ一覧から見て商品数が異なるデータが無いか確認。 foreach($arrOld as $cid => $count){ if($arrNew[$cid] != $count && $count > 0){ $arrDiffCategory_id[] = $cid; } } //対象IDが無ければ終了 if(count($arrDiffCategory_id) == 0){ if($is_out_trans) { $objQuery->commit(); } return; } //差分対象カテゴリIDの重複を除去 $arrDiffCategory_id = array_unique($arrDiffCategory_id); //dtb_category_countの更新 差分のあったカテゴリだけ更新する。 foreach($arrDiffCategory_id as $cid) { $sqlval = array(); $sqlval['create_date'] = 'Now()'; $sqlval['product_count'] = (string)$arrNew[$cid]; if($sqlval['product_count'] =="") { $sqlval['product_count'] = (string)'0'; } if(isset($arrOld[$cid])) { $objQuery->update('dtb_category_count', $sqlval, 'category_id = ?', array($cid)); }else{ $sqlval['category_id'] = $cid; $objQuery->insert('dtb_category_count', $sqlval); } } //差分があったIDとその親カテゴリIDのリストを取得する $arrTgtCategory_id = array(); foreach ($arrDiffCategory_id as $parent_category_id) { $arrTgtCategory_id[] = $parent_category_id; $arrParentID = $this->sfGetParents('dtb_category', 'parent_category_id', 'category_id', $parent_category_id); foreach($arrParentID as $pid) { $arrTgtCategory_id[] = $pid; } } //重複を取り除く $arrTgtCategory_id = array_unique($arrTgtCategory_id); //dtb_category_total_count 集計処理開始 //更新対象カテゴリIDだけ集計しなおす。 $arrUpdateData = array(); foreach ($arrTgtCategory_id as $category_id) { $arrval = array(); $arrval[] = $category_id; list($tmp_where, $tmp_arrval) = $this->sfGetCatWhere($category_id); if ($tmp_where != "") { $sql_where_product_ids = "product_id IN (SELECT product_id FROM dtb_product_categories WHERE " . $tmp_where . ")"; $arrval = array_merge((array)$arrval, (array)$tmp_arrval, (array)$tmp_arrval); } else { $sql_where_product_ids = '0<>0'; // 一致させない } $where = "($sql_where) AND ($sql_where_product_ids)"; $from = $objProduct->alldtlSQL($sql_where_product_ids); $sql = "SELECT count(*) FROM $from WHERE $where "; $arrUpdateData[ $category_id ] = $objQuery->getOne($sql, $arrval); } // 更新対象だけを更新。 foreach($arrUpdateData as $cid => $count) { $sqlval = array(); $sqlval['create_date'] = 'Now()'; $sqlval['product_count'] = $count; if($sqlval['product_count'] =="") { $sqlval['product_count'] = (string)'0'; } $ret = $objQuery->update('dtb_category_total_count', $sqlval, 'category_id = ?', array($cid)); if(!$ret) { $sqlval['category_id'] = $cid; $ret = $objQuery->insert('dtb_category_total_count', $sqlval); } } // トランザクション終了処理 if($is_out_trans) { $objQuery->commit(); } } /** * 子IDの配列を返す. * * @param string $table テーブル名 * @param string $pid_name 親ID名 * @param string $id_name ID名 * @param integer $id ID * @param array 子ID の配列 */ function sfGetChildsID($table, $pid_name, $id_name, $id) { $arrRet = $this->sfGetChildrenArray($table, $pid_name, $id_name, $id); return $arrRet; } /** * 階層構造のテーブルから子ID配列を取得する. * * @param string $table テーブル名 * @param string $pid_name 親ID名 * @param string $id_name ID名 * @param integer $id ID番号 * @return array 子IDの配列 */ function sfGetChildrenArray($table, $pid_name, $id_name, $id) { $objQuery =& SC_Query_Ex::getSingletonInstance(); $col = $pid_name . "," . $id_name; $arrData = $objQuery->select($col, $table); $arrPID = array(); $arrPID[] = $id; $arrChildren = array(); $arrChildren[] = $id; $arrRet = SC_Helper_DB_Ex::sfGetChildrenArraySub($arrData, $pid_name, $id_name, $arrPID); while(count($arrRet) > 0) { $arrChildren = array_merge($arrChildren, $arrRet); $arrRet = SC_Helper_DB_Ex::sfGetChildrenArraySub($arrData, $pid_name, $id_name, $arrRet); } return $arrChildren; } /** * 親ID直下の子IDをすべて取得する. * * @param array $arrData 親カテゴリの配列 * @param string $pid_name 親ID名 * @param string $id_name ID名 * @param array $arrPID 親IDの配列 * @return array 子IDの配列 */ function sfGetChildrenArraySub($arrData, $pid_name, $id_name, $arrPID) { $arrChildren = array(); $max = count($arrData); for($i = 0; $i < $max; $i++) { foreach($arrPID as $val) { if($arrData[$i][$pid_name] == $val) { $arrChildren[] = $arrData[$i][$id_name]; } } } return $arrChildren; } /** * 所属するすべての階層の親IDを配列で返す. * * @param SC_Query $objQuery SC_Query インスタンス * @param string $table テーブル名 * @param string $pid_name 親ID名 * @param string $id_name ID名 * @param integer $id ID * @return array 親IDの配列 */ function sfGetParents($table, $pid_name, $id_name, $id) { $arrRet = SC_Helper_DB_Ex::sfGetParentsArray($table, $pid_name, $id_name, $id); // 配列の先頭1つを削除する。 array_shift($arrRet); return $arrRet; } /** * 階層構造のテーブルから親ID配列を取得する. * * @param string $table テーブル名 * @param string $pid_name 親ID名 * @param string $id_name ID名 * @param integer $id ID * @return array 親IDの配列 */ function sfGetParentsArray($table, $pid_name, $id_name, $id) { $objQuery =& SC_Query_Ex::getSingletonInstance(); $col = $pid_name . "," . $id_name; $arrData = $objQuery->select($col, $table); $arrParents = array(); $arrParents[] = $id; $child = $id; $ret = SC_Helper_DB_Ex::sfGetParentsArraySub($arrData, $pid_name, $id_name, $child); while($ret != "") { $arrParents[] = $ret; $ret = SC_Helper_DB_Ex::sfGetParentsArraySub($arrData, $pid_name, $id_name, $ret); } $arrParents = array_reverse($arrParents); return $arrParents; } /* 子ID所属する親IDを取得する */ function sfGetParentsArraySub($arrData, $pid_name, $id_name, $child) { $max = count($arrData); $parent = ""; for($i = 0; $i < $max; $i++) { if($arrData[$i][$id_name] == $child) { $parent = $arrData[$i][$pid_name]; break; } } return $parent; } /** * カテゴリから商品を検索する場合のWHERE文と値を返す. * * @param integer $category_id カテゴリID * @return array 商品を検索する場合の配列 */ function sfGetCatWhere($category_id) { // 子カテゴリIDの取得 $arrRet = SC_Helper_DB_Ex::sfGetChildrenArray("dtb_category", "parent_category_id", "category_id", $category_id); $tmp_where = ""; foreach ($arrRet as $val) { if($tmp_where == "") { $tmp_where.= "category_id IN ( ?"; } else { $tmp_where.= ",? "; } $arrval[] = $val; } $tmp_where.= " ) "; return array($tmp_where, $arrval); } /** * SELECTボックス用リストを作成する. * * @param string $table テーブル名 * @param string $keyname プライマリーキーのカラム名 * @param string $valname データ内容のカラム名 * @param string $where WHERE句 * @param array $arrval プレースホルダ * @return array SELECT ボックス用リストの配列 */ function sfGetIDValueList($table, $keyname, $valname, $where = '', $arrVal = array()) { $objQuery =& SC_Query_Ex::getSingletonInstance(); $col = "$keyname, $valname"; $objQuery->setWhere("del_flg = 0"); $objQuery->setOrder("rank DESC"); $arrList = $objQuery->select($col, $table, $where, $arrVal); $count = count($arrList); for($cnt = 0; $cnt < $count; $cnt++) { $key = $arrList[$cnt][$keyname]; $val = $arrList[$cnt][$valname]; $arrRet[$key] = $val; } return $arrRet; } /** * ランキングを上げる. * * @param string $table テーブル名 * @param string $colname カラム名 * @param string|integer $id テーブルのキー * @param string $andwhere SQL の AND 条件である WHERE 句 * @return void */ function sfRankUp($table, $colname, $id, $andwhere = "") { $objQuery =& SC_Query_Ex::getSingletonInstance(); $objQuery->begin(); $where = "$colname = ?"; if($andwhere != "") { $where.= " AND $andwhere"; } // 対象項目のランクを取得 $rank = $objQuery->get('rank', $table, $where, array($id)); // ランクの最大値を取得 $maxrank = $objQuery->max('rank', $table, $andwhere); // ランクが最大値よりも小さい場合に実行する。 if($rank < $maxrank) { // ランクが一つ上のIDを取得する。 $where = "rank = ?"; if($andwhere != "") { $where.= " AND $andwhere"; } $uprank = $rank + 1; $up_id = $objQuery->get($colname, $table, $where, array($uprank)); // ランク入れ替えの実行 $sqlup = "UPDATE $table SET rank = ? WHERE $colname = ?"; if($andwhere != "") { $sqlup.= " AND $andwhere"; } $objQuery->exec($sqlup, array($rank + 1, $id)); $objQuery->exec($sqlup, array($rank, $up_id)); } $objQuery->commit(); } /** * ランキングを下げる. * * @param string $table テーブル名 * @param string $colname カラム名 * @param string|integer $id テーブルのキー * @param string $andwhere SQL の AND 条件である WHERE 句 * @return void */ function sfRankDown($table, $colname, $id, $andwhere = "") { $objQuery =& SC_Query_Ex::getSingletonInstance(); $objQuery->begin(); $where = "$colname = ?"; if($andwhere != "") { $where.= " AND $andwhere"; } // 対象項目のランクを取得 $rank = $objQuery->get('rank', $table, $where, array($id)); // ランクが1(最小値)よりも大きい場合に実行する。 if($rank > 1) { // ランクが一つ下のIDを取得する。 $where = "rank = ?"; if($andwhere != "") { $where.= " AND $andwhere"; } $downrank = $rank - 1; $down_id = $objQuery->get($colname, $table, $where, array($downrank)); // ランク入れ替えの実行 $sqlup = "UPDATE $table SET rank = ? WHERE $colname = ?"; if($andwhere != "") { $sqlup.= " AND $andwhere"; } $objQuery->exec($sqlup, array($rank - 1, $id)); $objQuery->exec($sqlup, array($rank, $down_id)); } $objQuery->commit(); } /** * 指定順位へ移動する. * * @param string $tableName テーブル名 * @param string $keyIdColumn キーを保持するカラム名 * @param string|integer $keyId キーの値 * @param integer $pos 指定順位 * @param string $where SQL の AND 条件である WHERE 句 * @return void */ function sfMoveRank($tableName, $keyIdColumn, $keyId, $pos, $where = "") { $objQuery =& SC_Query_Ex::getSingletonInstance(); $objQuery->begin(); // 自身のランクを取得する if($where != "") { $getWhere = "$keyIdColumn = ? AND " . $where; } else { $getWhere = "$keyIdColumn = ?"; } $rank = $objQuery->get('rank', $tableName, $getWhere, array($keyId)); $max = $objQuery->max('rank', $tableName, $where); // 値の調整(逆順) if($pos > $max) { $position = 1; } else if($pos < 1) { $position = $max; } else { $position = $max - $pos + 1; } //入れ替え先の順位が入れ換え元の順位より大きい場合 if( $position > $rank ) $term = "rank - 1"; //入れ替え先の順位が入れ換え元の順位より小さい場合 if( $position < $rank ) $term = "rank + 1"; // XXX 入れ替え先の順位が入れ替え元の順位と同じ場合 if (!isset($term)) $term = 'rank'; // 指定した順位の商品から移動させる商品までのrankを1つずらす $sql = "UPDATE $tableName SET rank = $term WHERE rank BETWEEN ? AND ?"; if($where != "") { $sql.= " AND $where"; } if( $position > $rank ) $objQuery->exec( $sql, array( $rank + 1, $position )); if( $position < $rank ) $objQuery->exec( $sql, array( $position, $rank - 1 )); // 指定した順位へrankを書き換える。 $sql = "UPDATE $tableName SET rank = ? WHERE $keyIdColumn = ? "; if($where != "") { $sql.= " AND $where"; } $objQuery->exec( $sql, array( $position, $keyId ) ); $objQuery->commit(); } /** * ランクを含むレコードを削除する. * * レコードごと削除する場合は、$deleteをtrueにする * * @param string $table テーブル名 * @param string $colname カラム名 * @param string|integer $id テーブルのキー * @param string $andwhere SQL の AND 条件である WHERE 句 * @param bool $delete レコードごと削除する場合 true, * レコードごと削除しない場合 false * @return void */ function sfDeleteRankRecord($table, $colname, $id, $andwhere = "", $delete = false) { $objQuery =& SC_Query_Ex::getSingletonInstance(); $objQuery->begin(); // 削除レコードのランクを取得する。 $where = "$colname = ?"; if($andwhere != "") { $where.= " AND $andwhere"; } $rank = $objQuery->get('rank', $table, $where, array($id)); if(!$delete) { // ランクを最下位にする、DELフラグON $sqlup = "UPDATE $table SET rank = 0, del_flg = 1 "; $sqlup.= "WHERE $colname = ?"; // UPDATEの実行 $objQuery->exec($sqlup, array($id)); } else { $objQuery->delete($table, "$colname = ?", array($id)); } // 追加レコードのランクより上のレコードを一つずらす。 $where = "rank > ?"; if($andwhere != "") { $where.= " AND $andwhere"; } $sqlup = "UPDATE $table SET rank = (rank - 1) WHERE $where"; $objQuery->exec($sqlup, array($rank)); $objQuery->commit(); } /** * 親IDの配列を元に特定のカラムを取得する. * * @param SC_Query $objQuery SC_Query インスタンス * @param string $table テーブル名 * @param string $id_name ID名 * @param string $col_name カラム名 * @param array $arrId IDの配列 * @return array 特定のカラムの配列 */ function sfGetParentsCol($objQuery, $table, $id_name, $col_name, $arrId ) { $col = $col_name; $len = count($arrId); $where = ""; for($cnt = 0; $cnt < $len; $cnt++) { if($where == "") { $where = "$id_name = ?"; } else { $where.= " OR $id_name = ?"; } } $objQuery->setOrder('level'); $arrRet = $objQuery->select($col, $table, $where, $arrId); return $arrRet; } /** * カテゴリ変更時の移動処理を行う. * * @param SC_Query $objQuery SC_Query インスタンス * @param string $table テーブル名 * @param string $id_name ID名 * @param string $cat_name カテゴリ名 * @param integer $old_catid 旧カテゴリID * @param integer $new_catid 新カテゴリID * @param integer $id ID * @return void */ function sfMoveCatRank($objQuery, $table, $id_name, $cat_name, $old_catid, $new_catid, $id) { if ($old_catid == $new_catid) { return; } // 旧カテゴリでのランク削除処理 // 移動レコードのランクを取得する。 $where = "$id_name = ?"; $rank = $objQuery->get('rank', $table, $where, array($id)); // 削除レコードのランクより上のレコードを一つ下にずらす。 $where = "rank > ? AND $cat_name = ?"; $sqlup = "UPDATE $table SET rank = (rank - 1) WHERE $where"; $objQuery->exec($sqlup, array($rank, $old_catid)); // 新カテゴリでの登録処理 // 新カテゴリの最大ランクを取得する。 $max_rank = $objQuery->max('rank', $table, "$cat_name = ?", array($new_catid)) + 1; $where = "$id_name = ?"; $sqlup = "UPDATE $table SET rank = ? WHERE $where"; $objQuery->exec($sqlup, array($max_rank, $id)); } /** * 都道府県から配送料金を取得する. * * @param integer|array $pref_id 都道府県ID 又は都道府県IDの配列 * @return string 指定の都道府県, 商品種別の配送料金 */ function sfGetDelivFee($pref_id, $product_type_id) { $objQuery =& SC_Query_Ex::getSingletonInstance(); /* * FIXME 都道府県が指定されていない場合は、東京都の番号を指定しておく * http://svn.ec-cube.net/open_trac/ticket/410 */ if($pref_id == "") { $pref_id = 13; } if (!is_array($pref_id)) { $pref_id = array($pref_id); } $sql = <<< __EOS__ SELECT SUM(T1.fee) AS fee FROM dtb_delivfee T1 JOIN dtb_deliv T2 ON T1.deliv_id = T2.deliv_id WHERE T1.pref = ? AND T2.product_type_id = ? __EOS__; $result = 0; foreach ($pref_id as $pref) { $result += $objQuery->getOne($sql, array($pref, $product_type_id)); } return $result; } /** * レコードの存在チェックを行う. * * TODO SC_Query に移行するべきか? * * @param string $table テーブル名 * @param string $col カラム名 * @param array $arrval 要素の配列 * @param array $addwhere SQL の AND 条件である WHERE 句 * @return bool レコードが存在する場合 true */ function sfIsRecord($table, $col, $arrval, $addwhere = "") { $objQuery =& SC_Query_Ex::getSingletonInstance(); $arrCol = preg_split("/[, ]/", $col); $where = "del_flg = 0"; if($addwhere != "") { $where.= " AND $addwhere"; } foreach($arrCol as $val) { if($val != "") { if($where == "") { $where = "$val = ?"; } else { $where.= " AND $val = ?"; } } } $ret = $objQuery->get($col, $table, $where, $arrval); if($ret != "") { return true; } return false; } /** * メーカー商品数数の登録を行う. * * @param SC_Query $objQuery SC_Query インスタンス * @return void */ function sfCountMaker($objQuery){ $sql = ""; //テーブル内容の削除 $objQuery->query("DELETE FROM dtb_maker_count"); //各メーカーの商品数を数えて格納 $sql = " INSERT INTO dtb_maker_count(maker_id, product_count, create_date) "; $sql .= " SELECT T1.maker_id, count(T2.maker_id), now() "; $sql .= " FROM dtb_maker AS T1 LEFT JOIN dtb_products AS T2"; $sql .= " ON T1.maker_id = T2.maker_id "; $sql .= " WHERE T2.del_flg = 0 AND T2.status = 1 "; $sql .= " GROUP BY T1.maker_id, T2.maker_id "; $objQuery->query($sql); } /** * 選択中の商品のメーカーを取得する. * * @param integer $product_id プロダクトID * @param integer $maker_id メーカーID * @return array 選択中の商品のメーカーIDの配列 * */ function sfGetMakerId($product_id, $maker_id = 0, $closed = false) { if ($closed) { $status = ""; } else { $status = "status = 1"; } if (!$this->g_maker_on) { $this->g_maker_on = true; $maker_id = (int) $maker_id; $product_id = (int) $product_id; if (SC_Utils_Ex::sfIsInt($maker_id) && $maker_id != 0 && $this->sfIsRecord("dtb_maker","maker_id", $maker_id)) { $this->g_maker_id = array($maker_id); } else if (SC_Utils_Ex::sfIsInt($product_id) && $product_id != 0 && $this->sfIsRecord("dtb_products","product_id", $product_id, $status)) { $objQuery =& SC_Query_Ex::getSingletonInstance(); $where = "product_id = ?"; $maker_id = $objQuery->getCol("maker_id", "dtb_products", "product_id = ?", array($product_id)); $this->g_maker_id = $maker_id; } else { // 不正な場合は、空の配列を返す。 $this->g_maker_id = array(); } } return $this->g_maker_id; } /** * メーカーの取得を行う. * * $products_check:true商品登録済みのものだけ取得する * * @param string $addwhere 追加する WHERE 句 * @param bool $products_check 商品の存在するカテゴリのみ取得する場合 true * @return array カテゴリツリーの配列 */ function sfGetMakerList($addwhere = "", $products_check = false) { $objQuery =& SC_Query_Ex::getSingletonInstance(); $where = "del_flg = 0"; if($addwhere != "") { $where.= " AND $addwhere"; } $objQuery->setOption("ORDER BY rank DESC"); if($products_check) { $col = "T1.maker_id, name"; $from = "dtb_maker AS T1 LEFT JOIN dtb_maker_count AS T2 ON T1.maker_id = T2.maker_id"; $where .= " AND product_count > 0"; } else { $col = "maker_id, name"; $from = "dtb_maker"; } $arrRet = $objQuery->select($col, $from, $where); $max = count($arrRet); for($cnt = 0; $cnt < $max; $cnt++) { $id = $arrRet[$cnt]['maker_id']; $name = $arrRet[$cnt]['name']; $arrList[$id] = $name; } return $arrList; } /** * 店舗基本情報に基づいて税金額を返す * * @param integer $price 計算対象の金額 * @return integer 税金額 */ function sfTax($price) { // 店舗基本情報を取得 $CONF = SC_Helper_DB_Ex::sfGetBasisData(); return SC_Utils_Ex::sfTax($price, $CONF['tax'], $CONF['tax_rule']); } /** * 店舗基本情報に基づいて税金付与した金額を返す * * @param integer $price 計算対象の金額 * @return integer 税金付与した金額 */ function sfCalcIncTax($price, $tax = null, $tax_rule = null) { // 店舗基本情報を取得 $CONF = SC_Helper_DB_Ex::sfGetBasisData(); return SC_Utils_Ex::sfCalcIncTax($price, $CONF['tax'], $CONF['tax_rule']); } /** * 店舗基本情報に基づいて加算ポイントを返す * * @param integer $totalpoint * @param integer $use_point * @return integer 加算ポイント */ function sfGetAddPoint($totalpoint, $use_point) { // 店舗基本情報を取得 $CONF = SC_Helper_DB_Ex::sfGetBasisData(); return SC_Utils_Ex::sfGetAddPoint($totalpoint, $use_point, $CONF['point_rate']); } /** * 指定ファイルが存在する場合 SQL として実行 * * XXX プラグイン用に追加。将来消すかも。 * * @param string $sqlFilePath SQL ファイルのパス * @return void */ function sfExecSqlByFile($sqlFilePath) { if (file_exists($sqlFilePath)) { $objQuery =& SC_Query_Ex::getSingletonInstance(); $sqls = file_get_contents($sqlFilePath); if ($sqls === false) SC_Utils_Ex::sfDispException('ファイルは存在するが読み込めない'); foreach (explode(';', $sqls) as $sql) { $sql = trim($sql); if (strlen($sql) == 0) continue; $objQuery->query($sql); } } } /** * 商品規格を設定しているか * * @param integer $product_id 商品ID * @return bool 商品規格が存在する場合:true, それ以外:false */ function sfHasProductClass($product_id) { if (!SC_Utils_Ex::sfIsInt($product_id)) return false; $objQuery =& SC_Query_Ex::getSingletonInstance(); $where = 'product_id = ? AND del_flg = 0 AND class_combination_id IS NOT NULL'; $count = $objQuery->count('dtb_products_class', $where, array($product_id)); return $count >= 1; } } ?>