source: branches/comu-ver2/data/class/helper/SC_Helper_DB.php @ 17557

Revision 17557, 61.5 KB checked in by Seasoft, 16 years ago (diff)

「子カテゴリ内の商品数を集計する」となっている部分のロジックが、実際には「カテゴリ登録数」となっていたので「商品数」に修正。

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id Revision Date
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23
24/**
25 * DB関連のヘルパークラス.
26 *
27 * @package Helper
28 * @author LOCKON CO.,LTD.
29 * @version $Id:SC_Helper_DB.php 15532 2007-08-31 14:39:46Z nanasess $
30 */
31class SC_Helper_DB {
32
33    // {{{ properties
34
35    /** ルートカテゴリ取得フラグ */
36    var $g_root_on;
37
38    /** ルートカテゴリID */
39    var $g_root_id;
40
41    /** 選択中カテゴリ取得フラグ */
42    var $g_category_on;
43
44    /** 選択中カテゴリID */
45    var $g_category_id;
46
47    // }}}
48    // {{{ functions
49
50    /**
51     * データベースのバージョンを所得する.
52     *
53     * @param string $dsn データソース名
54     * @return string データベースのバージョン
55     */
56    function sfGetDBVersion($dsn = "") {
57        $dbFactory = SC_DB_DBFactory_Ex::getInstance();
58        return $dbFactory->sfGetDBVersion($dsn);
59    }
60
61    /**
62     * テーブルの存在をチェックする.
63     *
64     * @param string $table_name チェック対象のテーブル名
65     * @param string $dsn データソース名
66     * @return テーブルが存在する場合 true
67     */
68    function sfTabaleExists($table_name, $dsn = "") {
69        $dbFactory = SC_DB_DBFactory_Ex::getInstance();
70        $dsn = $dbFactory->getDSN($dsn);
71
72        $objQuery = new SC_Query($dsn, true, true);
73        // 正常に接続されている場合
74        if(!$objQuery->isError()) {
75            list($db_type) = split(":", $dsn);
76            $sql = $dbFactory->getTableExistsSql();
77            $arrRet = $objQuery->getAll($sql, array($table_name));
78            if(count($arrRet) > 0) {
79                return true;
80            }
81        }
82        return false;
83    }
84
85    /**
86     * カラムの存在チェックと作成を行う.
87     *
88     * チェック対象のテーブルに, 該当のカラムが存在するかチェックする.
89     * 引数 $add が true の場合, 該当のカラムが存在しない場合は, カラムの生成を行う.
90     * カラムの生成も行う場合は, $col_type も必須となる.
91     *
92     * @param string $table_name テーブル名
93     * @param string $column_name カラム名
94     * @param string $col_type カラムのデータ型
95     * @param string $dsn データソース名
96     * @param bool $add カラムの作成も行う場合 true
97     * @return bool カラムが存在する場合とカラムの生成に成功した場合 true,
98     *               テーブルが存在しない場合 false,
99     *               引数 $add == false でカラムが存在しない場合 false
100     */
101    function sfColumnExists($table_name, $col_name, $col_type = "", $dsn = "", $add = false) {
102        $dbFactory = SC_DB_DBFactory_Ex::getInstance();
103        $dsn = $dbFactory->getDSN($dsn);
104
105        // テーブルが無ければエラー
106        if(!$this->sfTabaleExists($table_name, $dsn)) return false;
107
108        $objQuery = new SC_Query($dsn, true, true);
109        // 正常に接続されている場合
110        if(!$objQuery->isError()) {
111            list($db_type) = split(":", $dsn);
112
113            // カラムリストを取得
114            $arrRet = $dbFactory->sfGetColumnList($table_name);
115            if(count($arrRet) > 0) {
116                if(in_array($col_name, $arrRet)){
117                    return true;
118                }
119            }
120        }
121
122        // カラムを追加する
123        if($add){
124            $objQuery->query("ALTER TABLE $table_name ADD $col_name $col_type ");
125            return true;
126        }
127        return false;
128    }
129
130    /**
131     * インデックスの存在チェックと作成を行う.
132     *
133     * チェック対象のテーブルに, 該当のインデックスが存在するかチェックする.
134     * 引数 $add が true の場合, 該当のインデックスが存在しない場合は, インデックスの生成を行う.
135     * インデックスの生成も行う場合で, DB_TYPE が mysql の場合は, $length も必須となる.
136     *
137     * @param string $table_name テーブル名
138     * @param string $column_name カラム名
139     * @param string $index_name インデックス名
140     * @param integer|string $length インデックスを作成するデータ長
141     * @param string $dsn データソース名
142     * @param bool $add インデックスの生成もする場合 true
143     * @return bool インデックスが存在する場合とインデックスの生成に成功した場合 true,
144     *               テーブルが存在しない場合 false,
145     *               引数 $add == false でインデックスが存在しない場合 false
146     */
147    function sfIndexExists($table_name, $col_name, $index_name, $length = "", $dsn = "", $add = false) {
148        $dbFactory = SC_DB_DBFactory_Ex::getInstance();
149        $dsn = $dbFactory->getDSN($dsn);
150
151        // テーブルが無ければエラー
152        if (!$this->sfTabaleExists($table_name, $dsn)) return false;
153
154        $objQuery = new SC_Query($dsn, true, true);
155        $arrRet = $dbFactory->getTableIndex($index_name, $table_name);
156
157        // すでにインデックスが存在する場合
158        if(count($arrRet) > 0) {
159            return true;
160        }
161
162        // インデックスを作成する
163        if($add){
164            $dbFactory->createTableIndex($index_name, $table_name, $col_name, $length());
165            return true;
166        }
167        return false;
168    }
169
170    /**
171     * データの存在チェックを行う.
172     *
173     * @param string $table_name テーブル名
174     * @param string $where データを検索する WHERE 句
175     * @param string $dsn データソース名
176     * @param string $sql データの追加を行う場合の SQL文
177     * @param bool $add データの追加も行う場合 true
178     * @return bool データが存在する場合 true, データの追加に成功した場合 true,
179     *               $add == false で, データが存在しない場合 false
180     */
181    function sfDataExists($table_name, $where, $arrval, $dsn = "", $sql = "", $add = false) {
182        $dbFactory = SC_DB_DBFactory_Ex::getInstance();
183        $dsn = $dbFactory->getDSN($dsn);
184
185        $objQuery = new SC_Query($dsn, true, true);
186        $count = $objQuery->count($table_name, $where, $arrval);
187
188        if($count > 0) {
189            $ret = true;
190        } else {
191            $ret = false;
192        }
193        // データを追加する
194        if(!$ret && $add) {
195            $objQuery->exec($sql);
196        }
197        return $ret;
198    }
199
200    /**
201     * 店舗基本情報を取得する.
202     *
203     * @return array 店舗基本情報の配列
204     */
205    function sf_getBasisData() {
206        $objQuery = new SC_Query();
207        $arrRet = $objQuery->select('*', 'dtb_baseinfo');
208
209        if (isset($arrRet[0])) return $arrRet[0];
210
211        return array();
212    }
213
214    /* 選択中のアイテムのルートカテゴリIDを取得する */
215    function sfGetRootId() {
216
217        if(!$this->g_root_on)   {
218            $this->g_root_on = true;
219            $objQuery = new SC_Query();
220
221            if (!isset($_GET['product_id'])) $_GET['product_id'] = "";
222            if (!isset($_GET['category_id'])) $_GET['category_id'] = "";
223
224            if(!empty($_GET['product_id']) || !empty($_GET['category_id'])) {
225                // 選択中のカテゴリIDを判定する
226                $category_id = $this->sfGetCategoryId($_GET['product_id'], $_GET['category_id']);
227                // ROOTカテゴリIDの取得
228                $arrRet = $this->sfGetParents($objQuery, 'dtb_category', 'parent_category_id', 'category_id', $category_id);
229                $root_id = isset($arrRet[0]) ? $arrRet[0] : "";
230            } else {
231                // ROOTカテゴリIDをなしに設定する
232                $root_id = "";
233            }
234            $this->g_root_id = $root_id;
235        }
236        return $this->g_root_id;
237    }
238
239    /**
240     * 商品規格情報を取得する.
241     *
242     * @param array $arrID 規格ID
243     * @return array 規格情報の配列
244     */
245    function sfGetProductsClass($arrID) {
246        list($product_id, $classcategory_id1, $classcategory_id2) = $arrID;
247
248        if($classcategory_id1 == "") {
249            $classcategory_id1 = '0';
250        }
251        if($classcategory_id2 == "") {
252            $classcategory_id2 = '0';
253        }
254
255        // 商品規格取得
256        $objQuery = new SC_Query();
257        $col = "product_id, deliv_fee, name, product_code, main_list_image, main_image, price01, price02, point_rate, product_class_id, classcategory_id1, classcategory_id2, class_id1, class_id2, stock, stock_unlimited, sale_limit, sale_unlimited";
258        $table = "vw_product_class AS prdcls";
259        $where = "product_id = ? AND classcategory_id1 = ? AND classcategory_id2 = ?";
260        $objQuery->setorder("rank1 DESC, rank2 DESC");
261        $arrRet = $objQuery->select($col, $table, $where, array($product_id, $classcategory_id1, $classcategory_id2));
262        return $arrRet[0];
263    }
264
265    /**
266     * 支払い方法を取得する.
267     *
268     * @return void
269     */
270    function sfGetPayment() {
271        $objQuery = new SC_Query();
272        // 購入金額が条件額以下の項目を取得
273        $where = "del_flg = 0";
274        $objQuery->setorder("fix, rank DESC");
275        $arrRet = $objQuery->select("payment_id, payment_method, rule", "dtb_payment", $where);
276        return $arrRet;
277    }
278
279    /**
280     * カート内商品の集計処理を行う.
281     *
282     * @param LC_Page $objPage ページクラスのインスタンス
283     * @param SC_CartSession $objCartSess カートセッションのインスタンス
284     * @param array $arrInfo 商品情報の配列
285     * @return LC_Page 集計処理後のページクラスインスタンス
286     */
287    function sfTotalCart(&$objPage, $objCartSess, $arrInfo) {
288
289        // 規格名一覧
290        $arrClassName = $this->sfGetIDValueList("dtb_class", "class_id", "name");
291        // 規格分類名一覧
292        $arrClassCatName = $this->sfGetIDValueList("dtb_classcategory", "classcategory_id", "name");
293
294        $objPage->tpl_total_pretax = 0;     // 費用合計(税込み)
295        $objPage->tpl_total_tax = 0;        // 消費税合計
296        $objPage->tpl_total_point = 0;      // ポイント合計
297
298        // カート内情報の取得
299        $arrQuantityInfo_by_product = array();
300        $cnt = 0;
301        foreach ($objCartSess->getCartList() as $arrCart) {
302            // 商品規格情報の取得
303            $arrData = $this->sfGetProductsClass($arrCart['id']);
304            $limit = "";
305            // DBに存在する商品
306            if (count($arrData) > 0) {
307
308                // 購入制限数を求める。
309                if ($arrData['stock_unlimited'] != '1' && $arrData['sale_unlimited'] != '1') {
310                    $limit = min($arrData['sale_limit'], $arrData['stock']);
311                } elseif ($arrData['sale_unlimited'] != '1') {
312                    $limit = $arrData['sale_limit'];
313                } elseif ($arrData['stock_unlimited'] != '1') {
314                    $limit = $arrData['stock'];
315                }
316
317                if($limit != "" && $limit < $arrCart['quantity']) {
318                    // カート内商品数を制限に合わせる
319                    $objCartSess->setProductValue($arrCart['id'], 'quantity', $limit);
320                    $quantity = $limit;
321                    $objPage->tpl_message = "※「" . $arrData['name'] . "」は販売制限(または在庫が不足)しております。一度にこれ以上の購入はできません。\n";
322                } else {
323                    $quantity = $arrCart['quantity'];
324                }
325               
326                // (商品規格単位でなく)商品単位での評価のための準備
327                $product_id = $arrCart['id'][0];
328                $arrQuantityInfo_by_product[$product_id]['product_id'] = $product_id;
329                $arrQuantityInfo_by_product[$product_id]['quantity'] += $quantity;
330                $arrQuantityInfo_by_product[$product_id]['sale_unlimited'] = $arrData['sale_unlimited'];
331                $arrQuantityInfo_by_product[$product_id]['sale_limit'] = $arrData['sale_limit'];
332               
333                $objPage->arrProductsClass[$cnt] = $arrData;
334                $objPage->arrProductsClass[$cnt]['quantity'] = $quantity;
335                $objPage->arrProductsClass[$cnt]['cart_no'] = $arrCart['cart_no'];
336                $objPage->arrProductsClass[$cnt]['class_name1'] =
337                    isset($arrClassName[$arrData['class_id1']])
338                        ? $arrClassName[$arrData['class_id1']] : "";
339
340                $objPage->arrProductsClass[$cnt]['class_name2'] =
341                    isset($arrClassName[$arrData['class_id2']])
342                        ? $arrClassName[$arrData['class_id2']] : "";
343
344                $objPage->arrProductsClass[$cnt]['classcategory_name1'] =
345                    $arrClassCatName[$arrData['classcategory_id1']];
346
347                $objPage->arrProductsClass[$cnt]['classcategory_name2'] =
348                    $arrClassCatName[$arrData['classcategory_id2']];
349
350                // 画像サイズ
351                $main_image_path = IMAGE_SAVE_DIR . basename($objPage->arrProductsClass[$cnt]["main_image"]);
352                if(file_exists($main_image_path)) {
353                    list($image_width, $image_height) = getimagesize($main_image_path);
354                } else {
355                    $image_width = 0;
356                    $image_height = 0;
357                }
358
359                $objPage->arrProductsClass[$cnt]["tpl_image_width"] = $image_width + 60;
360                $objPage->arrProductsClass[$cnt]["tpl_image_height"] = $image_height + 80;
361                // 価格の登録
362                if ($arrData['price02'] != "") {
363                    $objCartSess->setProductValue($arrCart['id'], 'price', $arrData['price02']);
364                    $objPage->arrProductsClass[$cnt]['uniq_price'] = $arrData['price02'];
365                } else {
366                    $objCartSess->setProductValue($arrCart['id'], 'price', $arrData['price01']);
367                    $objPage->arrProductsClass[$cnt]['uniq_price'] = $arrData['price01'];
368                }
369                // ポイント付与率の登録
370                if (USE_POINT !== false) {
371                    $objCartSess->setProductValue($arrCart['id'], 'point_rate', $arrData['point_rate']);
372                }
373                // 商品ごとの合計金額
374                $objPage->arrProductsClass[$cnt]['total_pretax'] = $objCartSess->getProductTotal($arrInfo, $arrCart['id']);
375                // 送料の合計を計算する
376                $objPage->tpl_total_deliv_fee+= ($arrData['deliv_fee'] * $arrCart['quantity']);
377                $cnt++;
378            } else {
379                // DBに商品が見つからない場合はカート商品の削除
380                $objCartSess->delProductKey('id', $arrCart['id']);
381            }
382        }
383       
384        foreach ($arrQuantityInfo_by_product as $QuantityInfo) {
385            if($QuantityInfo['sale_unlimited'] != '1' && $QuantityInfo['sale_limit'] != '' && $QuantityInfo['sale_limit'] < $QuantityInfo['quantity']) {
386                // カート内商品数を制限に合わせる
387                $objPage->tpl_error = "※「" . $arrData['name'] . "」は個数「{$QuantityInfo['sale_limit']}」以下に販売制限しております。一度にこれ以上の購入はできません。\n";
388                foreach (array_keys($objPage->arrProductsClass) as $key) {
389                    $ProductsClass =& $objPage->arrProductsClass[$key];
390                    $ProductsClass['error'] = true;
391                }
392            }
393        }
394       
395        // 全商品合計金額(税込み)
396        $objPage->tpl_total_pretax = $objCartSess->getAllProductsTotal($arrInfo);
397        // 全商品合計消費税
398        $objPage->tpl_total_tax = $objCartSess->getAllProductsTax($arrInfo);
399        // 全商品合計ポイント
400        $objPage->tpl_total_point = $objCartSess->getAllProductsPoint();
401
402        return $objPage;
403    }
404
405    /**
406     * 受注一時テーブルへの書き込み処理を行う.
407     *
408     * @param string $uniqid ユニークID
409     * @param array $sqlval SQLの値の配列
410     * @return void
411     */
412    function sfRegistTempOrder($uniqid, $sqlval) {
413        if($uniqid != "") {
414            // 既存データのチェック
415            $objQuery = new SC_Query();
416            $where = "order_temp_id = ?";
417            $cnt = $objQuery->count("dtb_order_temp", $where, array($uniqid));
418            // 既存データがない場合
419            if ($cnt == 0) {
420                // 初回書き込み時に会員の登録済み情報を取り込む
421                $sqlval = $this->sfGetCustomerSqlVal($uniqid, $sqlval);
422                $sqlval['create_date'] = "now()";
423                $objQuery->insert("dtb_order_temp", $sqlval);
424            } else {
425                $objQuery->update("dtb_order_temp", $sqlval, $where, array($uniqid));
426            }
427        }
428    }
429
430    /**
431     * 会員情報から SQL文の値を生成する.
432     *
433     * @param string $uniqid ユニークID
434     * @param array $sqlval SQL の値の配列
435     * @return array 会員情報を含んだ SQL の値の配列
436     */
437    function sfGetCustomerSqlVal($uniqid, $sqlval) {
438        $objCustomer = new SC_Customer();
439        // 会員情報登録処理
440        if ($objCustomer->isLoginSuccess(true)) {
441            // 登録データの作成
442            $sqlval['order_temp_id'] = $uniqid;
443            $sqlval['update_date'] = 'Now()';
444            $sqlval['customer_id'] = $objCustomer->getValue('customer_id');
445            $sqlval['order_name01'] = $objCustomer->getValue('name01');
446            $sqlval['order_name02'] = $objCustomer->getValue('name02');
447            $sqlval['order_kana01'] = $objCustomer->getValue('kana01');
448            $sqlval['order_kana02'] = $objCustomer->getValue('kana02');
449            $sqlval['order_sex'] = $objCustomer->getValue('sex');
450            $sqlval['order_zip01'] = $objCustomer->getValue('zip01');
451            $sqlval['order_zip02'] = $objCustomer->getValue('zip02');
452            $sqlval['order_pref'] = $objCustomer->getValue('pref');
453            $sqlval['order_addr01'] = $objCustomer->getValue('addr01');
454            $sqlval['order_addr02'] = $objCustomer->getValue('addr02');
455            $sqlval['order_tel01'] = $objCustomer->getValue('tel01');
456            $sqlval['order_tel02'] = $objCustomer->getValue('tel02');
457            $sqlval['order_tel03'] = $objCustomer->getValue('tel03');
458            if (defined('MOBILE_SITE')) {
459                $email_mobile = $objCustomer->getValue('email_mobile');
460                if (empty($email_mobile)) {
461                    $sqlval['order_email'] = $objCustomer->getValue('email');
462                } else {
463                    $sqlval['order_email'] = $email_mobile;
464                }
465            } else {
466                $sqlval['order_email'] = $objCustomer->getValue('email');
467            }
468            $sqlval['order_job'] = $objCustomer->getValue('job');
469            $sqlval['order_birth'] = $objCustomer->getValue('birth');
470        }
471        return $sqlval;
472    }
473
474    /**
475     * 会員編集登録処理を行う.
476     *
477     * @param array $array パラメータの配列
478     * @param array $arrRegistColumn 登録するカラムの配列
479     * @return void
480     */
481    function sfEditCustomerData($array, $arrRegistColumn) {
482        $objQuery = new SC_Query();
483
484        foreach ($arrRegistColumn as $data) {
485            if ($data["column"] != "password") {
486                if($array[ $data['column'] ] != "") {
487                    $arrRegist[ $data["column"] ] = $array[ $data["column"] ];
488                } else {
489                    $arrRegist[ $data['column'] ] = NULL;
490                }
491            }
492        }
493        if (strlen($array["year"]) > 0 && strlen($array["month"]) > 0 && strlen($array["day"]) > 0) {
494            $arrRegist["birth"] = $array["year"] ."/". $array["month"] ."/". $array["day"] ." 00:00:00";
495        } else {
496            $arrRegist["birth"] = NULL;
497        }
498
499        //-- パスワードの更新がある場合は暗号化。(更新がない場合はUPDATE文を構成しない)
500        if ($array["password"] != DEFAULT_PASSWORD) $arrRegist["password"] = sha1($array["password"] . ":" . AUTH_MAGIC);
501        $arrRegist["update_date"] = "NOW()";
502
503        //-- 編集登録実行
504        $objQuery->begin();
505        $objQuery->update("dtb_customer", $arrRegist, "customer_id = ? ", array($array['customer_id']));
506        $objQuery->commit();
507    }
508
509    /**
510     * 受注番号、利用ポイント、加算ポイントから最終ポイントを取得する.
511     *
512     * @param integer $order_id 受注番号
513     * @param integer $use_point 利用ポイント
514     * @param integer $add_point 加算ポイント
515     * @return array 最終ポイントの配列
516     */
517    function sfGetCustomerPoint($order_id, $use_point, $add_point) {
518        $objQuery = new SC_Query();
519        $arrRet = $objQuery->select("customer_id", "dtb_order", "order_id = ?", array($order_id));
520        $customer_id = $arrRet[0]['customer_id'];
521        if($customer_id != "" && $customer_id >= 1) {
522    if (USE_POINT !== false) {
523            $arrRet = $objQuery->select("point", "dtb_customer", "customer_id = ?", array($customer_id));
524            $point = $arrRet[0]['point'];
525            $total_point = $arrRet[0]['point'] - $use_point + $add_point;
526    } else {
527        $total_point = 0;
528            $point = 0;
529    }
530        } else {
531            $total_point = "";
532            $point = "";
533        }
534        return array($point, $total_point);
535    }
536
537    /**
538     * カテゴリツリーの取得を行う.
539     *
540     * @param integer $parent_category_id 親カテゴリID
541     * @param bool $count_check 登録商品数のチェックを行う場合 true
542     * @return array カテゴリツリーの配列
543     */
544    function sfGetCatTree($parent_category_id, $count_check = false) {
545        $objQuery = new SC_Query();
546        $col = "";
547        $col .= " cat.category_id,";
548        $col .= " cat.category_name,";
549        $col .= " cat.parent_category_id,";
550        $col .= " cat.level,";
551        $col .= " cat.rank,";
552        $col .= " cat.creator_id,";
553        $col .= " cat.create_date,";
554        $col .= " cat.update_date,";
555        $col .= " cat.del_flg, ";
556        $col .= " ttl.product_count";
557        $from = "dtb_category as cat left join dtb_category_total_count as ttl on ttl.category_id = cat.category_id";
558        // 登録商品数のチェック
559        if($count_check) {
560            $where = "del_flg = 0 AND product_count > 0";
561        } else {
562            $where = "del_flg = 0";
563        }
564        $objQuery->setoption("ORDER BY rank DESC");
565        $arrRet = $objQuery->select($col, $from, $where);
566
567        $arrParentID = $this->sfGetParents($objQuery, 'dtb_category', 'parent_category_id', 'category_id', $parent_category_id);
568
569        foreach($arrRet as $key => $array) {
570            foreach($arrParentID as $val) {
571                if($array['category_id'] == $val) {
572                    $arrRet[$key]['display'] = 1;
573                    break;
574                }
575            }
576        }
577
578        return $arrRet;
579    }
580
581    /**
582     * カテゴリツリーの取得を複数カテゴリーで行う.
583     *
584     * @param integer $product_id 商品ID
585     * @param bool $count_check 登録商品数のチェックを行う場合 true
586     * @return array カテゴリツリーの配列
587     */
588    function sfGetMultiCatTree($product_id, $count_check = false) {
589        $objQuery = new SC_Query();
590        $col = "";
591        $col .= " cat.category_id,";
592        $col .= " cat.category_name,";
593        $col .= " cat.parent_category_id,";
594        $col .= " cat.level,";
595        $col .= " cat.rank,";
596        $col .= " cat.creator_id,";
597        $col .= " cat.create_date,";
598        $col .= " cat.update_date,";
599        $col .= " cat.del_flg, ";
600        $col .= " ttl.product_count";
601        $from = "dtb_category as cat left join dtb_category_total_count as ttl on ttl.category_id = cat.category_id";
602        // 登録商品数のチェック
603        if($count_check) {
604            $where = "del_flg = 0 AND product_count > 0";
605        } else {
606            $where = "del_flg = 0";
607        }
608        $objQuery->setoption("ORDER BY rank DESC");
609        $arrRet = $objQuery->select($col, $from, $where);
610
611        $arrCategory_id = $this->sfGetCategoryId($product_id, $status);
612
613        $arrCatTree = array();
614        foreach ($arrCategory_id as $pkey => $parent_category_id) {
615            $arrParentID = $this->sfGetParents($objQuery, 'dtb_category', 'parent_category_id', 'category_id', $parent_category_id);
616
617            foreach($arrParentID as $pid) {
618                foreach($arrRet as $key => $array) {
619                    if($array['category_id'] == $pid) {
620                        $arrCatTree[$pkey][] = $arrRet[$key];
621                        break;
622                    }
623                }
624            }
625        }
626
627        return $arrCatTree;
628    }
629
630    /**
631     * 親カテゴリーを連結した文字列を取得する.
632     *
633     * @param integer $category_id カテゴリID
634     * @return string 親カテゴリーを連結した文字列
635     */
636    function sfGetCatCombName($category_id){
637        // 商品が属するカテゴリIDを縦に取得
638        $objQuery = new SC_Query();
639        $arrCatID = $this->sfGetParents($objQuery, "dtb_category", "parent_category_id", "category_id", $category_id);
640        $ConbName = "";
641
642        // カテゴリー名称を取得する
643        foreach($arrCatID as $key => $val){
644            $sql = "SELECT category_name FROM dtb_category WHERE category_id = ?";
645            $arrVal = array($val);
646            $CatName = $objQuery->getOne($sql,$arrVal);
647            $ConbName .= $CatName . ' | ';
648        }
649        // 最後の | をカットする
650        $ConbName = substr_replace($ConbName, "", strlen($ConbName) - 2, 2);
651
652        return $ConbName;
653    }
654
655    /**
656     * 指定したカテゴリーIDの大カテゴリーを取得する.
657     *
658     * @param integer $category_id カテゴリID
659     * @return array 指定したカテゴリーIDの大カテゴリー
660     */
661    function sfGetFirstCat($category_id){
662        // 商品が属するカテゴリIDを縦に取得
663        $objQuery = new SC_Query();
664        $arrRet = array();
665        $arrCatID = $this->sfGetParents($objQuery, "dtb_category", "parent_category_id", "category_id", $category_id);
666        $arrRet['id'] = $arrCatID[0];
667
668        // カテゴリー名称を取得する
669        $sql = "SELECT category_name FROM dtb_category WHERE category_id = ?";
670        $arrVal = array($arrRet['id']);
671        $arrRet['name'] = $objQuery->getOne($sql,$arrVal);
672
673        return $arrRet;
674    }
675
676    /**
677     * カテゴリツリーの取得を行う.
678     *
679     * $products_check:true商品登録済みのものだけ取得する
680     *
681     * @param string $addwhere 追加する WHERE 句
682     * @param bool $products_check 商品の存在するカテゴリのみ取得する場合 true
683     * @param string $head カテゴリ名のプレフィックス文字列
684     * @return array カテゴリツリーの配列
685     */
686    function sfGetCategoryList($addwhere = "", $products_check = false, $head = CATEGORY_HEAD) {
687        $objQuery = new SC_Query();
688        $where = "del_flg = 0";
689
690        if($addwhere != "") {
691            $where.= " AND $addwhere";
692        }
693
694        $objQuery->setoption("ORDER BY rank DESC");
695
696        if($products_check) {
697            $col = "T1.category_id, category_name, level";
698            $from = "dtb_category AS T1 LEFT JOIN dtb_category_total_count AS T2 ON T1.category_id = T2.category_id";
699            $where .= " AND product_count > 0";
700        } else {
701            $col = "category_id, category_name, level";
702            $from = "dtb_category";
703        }
704
705        $arrRet = $objQuery->select($col, $from, $where);
706
707        $max = count($arrRet);
708        for($cnt = 0; $cnt < $max; $cnt++) {
709            $id = $arrRet[$cnt]['category_id'];
710            $name = $arrRet[$cnt]['category_name'];
711            $arrList[$id] = str_repeat($head, $arrRet[$cnt]['level']) . $name;
712        }
713        return $arrList;
714    }
715
716    /**
717     * カテゴリーツリーの取得を行う.
718     *
719     * 親カテゴリの Value=0 を対象とする
720     *
721     * @param bool $parent_zero 親カテゴリの Value=0 の場合 true
722     * @return array カテゴリツリーの配列
723     */
724    function sfGetLevelCatList($parent_zero = true) {
725        $objQuery = new SC_Query();
726
727        // カテゴリ名リストを取得
728        $col = "category_id, parent_category_id, category_name";
729        $where = "del_flg = 0";
730        $objQuery->setoption("ORDER BY level");
731        $arrRet = $objQuery->select($col, "dtb_category", $where);
732        $arrCatName = array();
733        foreach ($arrRet as $arrTmp) {
734            $arrCatName[$arrTmp['category_id']] =
735                (($arrTmp['parent_category_id'] > 0)?
736                    $arrCatName[$arrTmp['parent_category_id']] : "")
737                . CATEGORY_HEAD . $arrTmp['category_name'];
738        }
739
740        $col = "category_id, parent_category_id, category_name, level";
741        $where = "del_flg = 0";
742        $objQuery->setoption("ORDER BY rank DESC");
743        $arrRet = $objQuery->select($col, "dtb_category", $where);
744        $max = count($arrRet);
745
746        for($cnt = 0; $cnt < $max; $cnt++) {
747            if($parent_zero) {
748                if($arrRet[$cnt]['level'] == LEVEL_MAX) {
749                    $arrValue[$cnt] = $arrRet[$cnt]['category_id'];
750                } else {
751                    $arrValue[$cnt] = "";
752                }
753            } else {
754                $arrValue[$cnt] = $arrRet[$cnt]['category_id'];
755            }
756
757            $arrOutput[$cnt] = $arrCatName[$arrRet[$cnt]['category_id']];
758        }
759
760        return array($arrValue, $arrOutput);
761    }
762
763    /**
764     * 選択中の商品のカテゴリを取得する.
765     *
766     * @param integer $product_id プロダクトID
767     * @param integer $category_id カテゴリID
768     * @return array 選択中の商品のカテゴリIDの配列
769     *
770     */
771    function sfGetCategoryId($product_id, $category_id = 0, $closed = false) {
772        if ($closed) {
773            $status = "";
774        } else {
775            $status = "status = 1";
776        }
777
778        if(!$this->g_category_on) {
779            $this->g_category_on = true;
780            $category_id = (int) $category_id;
781            $product_id = (int) $product_id;
782            if(SC_Utils_Ex::sfIsInt($category_id) && $this->sfIsRecord("dtb_category","category_id", $category_id)) {
783                $this->g_category_id = array($category_id);
784            } else if (SC_Utils_Ex::sfIsInt($product_id) && $this->sfIsRecord("dtb_products","product_id", $product_id, $status)) {
785                $objQuery = new SC_Query();
786                $where = "product_id = ?";
787                $category_id = $objQuery->getCol("dtb_product_categories", "category_id", "product_id = ?", array($product_id));
788                $this->g_category_id = $category_id;
789            } else {
790                // 不正な場合は、空の配列を返す。
791                $this->g_category_id = array();
792            }
793        }
794        return $this->g_category_id;
795    }
796
797    /**
798     * 商品をカテゴリの先頭に追加する.
799     *
800     * @param integer $category_id カテゴリID
801     * @param integer $product_id プロダクトID
802     * @return void
803     */
804    function addProductBeforCategories($category_id, $product_id) {
805
806        $sqlval = array("category_id" => $category_id,
807                        "product_id" => $product_id);
808
809        $objQuery = new SC_Query();
810
811        // 現在の商品カテゴリを取得
812        $arrCat = $objQuery->select("product_id, category_id, rank",
813                                    "dtb_product_categories",
814                                    "category_id = ?",
815                                    array($category_id));
816
817        $max = "0";
818        foreach ($arrCat as $val) {
819            // 同一商品が存在する場合は登録しない
820            if ($val["product_id"] == $product_id) {
821                return;
822            }
823            // 最上位ランクを取得
824            $max = ($max < $val["rank"]) ? $val["rank"] : $max;
825        }
826        $sqlval["rank"] = $max + 1;
827        $objQuery->insert("dtb_product_categories", $sqlval);
828    }
829
830    /**
831     * 商品をカテゴリの末尾に追加する.
832     *
833     * @param integer $category_id カテゴリID
834     * @param integer $product_id プロダクトID
835     * @return void
836     */
837    function addProductAfterCategories($category_id, $product_id) {
838        $sqlval = array("category_id" => $category_id,
839                        "product_id" => $product_id);
840
841        $objQuery = new SC_Query();
842
843        // 現在の商品カテゴリを取得
844        $arrCat = $objQuery->select("product_id, category_id, rank",
845                                    "dtb_product_categories",
846                                    "category_id = ?",
847                                    array($category_id));
848
849        $min = 0;
850        foreach ($arrCat as $val) {
851            // 同一商品が存在する場合は登録しない
852            if ($val["product_id"] == $product_id) {
853                return;
854            }
855            // 最下位ランクを取得
856            $min = ($min < $val["rank"]) ? $val["rank"] : $min;
857        }
858        $sqlval["rank"] = $min;
859        $objQuery->insert("dtb_product_categories", $sqlval);
860    }
861
862    /**
863     * 商品をカテゴリから削除する.
864     *
865     * @param integer $category_id カテゴリID
866     * @param integer $product_id プロダクトID
867     * @return void
868     */
869    function removeProductByCategories($category_id, $product_id) {
870        $sqlval = array("category_id" => $category_id,
871                        "product_id" => $product_id);
872        $objQuery = new SC_Query();
873        $objQuery->delete("dtb_product_categories",
874                          "category_id = ? AND product_id = ?", $sqlval);
875    }
876
877    /**
878     * 商品カテゴリを更新する.
879     *
880     * @param array $arrCategory_id 登録するカテゴリIDの配列
881     * @param integer $product_id プロダクトID
882     * @return void
883     */
884    function updateProductCategories($arrCategory_id, $product_id) {
885        $objQuery = new SC_Query();
886
887        // 現在のカテゴリ情報を取得
888        $arrCurrentCat = $objQuery->select("product_id, category_id, rank",
889                                           "dtb_product_categories",
890                                           "product_id = ?",
891                                           array($product_id));
892
893        // 登録するカテゴリ情報と比較
894        foreach ($arrCurrentCat as $val) {
895
896            // 登録しないカテゴリを削除
897            if (!in_array($val["category_id"], $arrCategory_id)) {
898                $this->removeProductByCategories($val["category_id"], $product_id);
899            }
900        }
901
902        // カテゴリを登録
903        foreach ($arrCategory_id as $category_id) {
904            $this->addProductBeforCategories($category_id, $product_id);
905        }
906    }
907
908    /**
909     * カテゴリ数の登録を行う.
910     *
911     * @param SC_Query $objQuery SC_Query インスタンス
912     * @return void
913     */
914    function sfCategory_Count($objQuery){
915
916        //テーブル内容の削除
917        $objQuery->query("DELETE FROM dtb_category_count");
918        $objQuery->query("DELETE FROM dtb_category_total_count");
919
920        $sql_where .= 'alldtl.del_flg = 0 AND alldtl.status = 1';
921        // 在庫無し商品の非表示
922        if (NOSTOCK_HIDDEN === true) {
923            $sql_where .= ' AND (alldtl.stock_max >= 1 OR alldtl.stock_unlimited_max = 1)';
924        }
925
926        //各カテゴリ内の商品数を数えて格納
927        $sql = <<< __EOS__
928            INSERT INTO dtb_category_count(category_id, product_count, create_date)
929            SELECT T1.category_id, count(T2.category_id), now()
930            FROM dtb_category AS T1
931                LEFT JOIN dtb_product_categories AS T2
932                    ON T1.category_id = T2.category_id
933                LEFT JOIN vw_products_allclass_detail AS alldtl
934                    ON T2.product_id = alldtl.product_id
935            WHERE $sql_where
936            GROUP BY T1.category_id, T2.category_id
937__EOS__;
938       
939        $objQuery->query($sql);
940
941        //子カテゴリ内の商品数を集計する
942       
943        // カテゴリ情報を取得
944        $arrCat = $objQuery->select('category_id', 'dtb_category');
945       
946        foreach ($arrCat as $row) {
947            $category_id = $row['category_id'];
948            $arrval = array();
949           
950            $arrval[] = $category_id;
951           
952            list($tmp_where, $tmp_arrval) = $this->sfGetCatWhere($category_id);
953            if ($tmp_where != "") {
954                $sql_where_product_ids = "alldtl.product_id IN (SELECT product_id FROM dtb_product_categories WHERE " . $tmp_where . ")";
955                $arrval = array_merge((array)$arrval, (array)$tmp_arrval);
956            } else {
957                $sql_where_product_ids = '0<>0'; // 一致させない
958            }
959           
960            $sql = <<< __EOS__
961                INSERT INTO dtb_category_total_count (category_id, product_count, create_date)
962                SELECT
963                    ?
964                    ,count(*)
965                    ,now()
966                FROM vw_products_allclass_detail AS alldtl
967                WHERE ($sql_where) AND ($sql_where_product_ids)
968__EOS__;
969           
970            $objQuery->query($sql, $arrval);
971        }
972    }
973
974    /**
975     * 子IDの配列を返す.
976     *
977     * @param string $table テーブル名
978     * @param string $pid_name 親ID名
979     * @param string $id_name ID名
980     * @param integer $id ID
981     * @param array 子ID の配列
982     */
983    function sfGetChildsID($table, $pid_name, $id_name, $id) {
984        $arrRet = $this->sfGetChildrenArray($table, $pid_name, $id_name, $id);
985        return $arrRet;
986    }
987
988    /**
989     * 階層構造のテーブルから子ID配列を取得する.
990     *
991     * @param string $table テーブル名
992     * @param string $pid_name 親ID名
993     * @param string $id_name ID名
994     * @param integer $id ID番号
995     * @return array 子IDの配列
996     */
997    function sfGetChildrenArray($table, $pid_name, $id_name, $id) {
998        $objQuery = new SC_Query();
999        $col = $pid_name . "," . $id_name;
1000         $arrData = $objQuery->select($col, $table);
1001
1002        $arrPID = array();
1003        $arrPID[] = $id;
1004        $arrChildren = array();
1005        $arrChildren[] = $id;
1006
1007        $arrRet = $this->sfGetChildrenArraySub($arrData, $pid_name, $id_name, $arrPID);
1008
1009        while(count($arrRet) > 0) {
1010            $arrChildren = array_merge($arrChildren, $arrRet);
1011            $arrRet = $this->sfGetChildrenArraySub($arrData, $pid_name, $id_name, $arrRet);
1012        }
1013
1014        return $arrChildren;
1015    }
1016
1017    /**
1018     * 親ID直下の子IDをすべて取得する.
1019     *
1020     * @param array $arrData 親カテゴリの配列
1021     * @param string $pid_name 親ID名
1022     * @param string $id_name ID名
1023     * @param array $arrPID 親IDの配列
1024     * @return array 子IDの配列
1025     */
1026    function sfGetChildrenArraySub($arrData, $pid_name, $id_name, $arrPID) {
1027        $arrChildren = array();
1028        $max = count($arrData);
1029
1030        for($i = 0; $i < $max; $i++) {
1031            foreach($arrPID as $val) {
1032                if($arrData[$i][$pid_name] == $val) {
1033                    $arrChildren[] = $arrData[$i][$id_name];
1034                }
1035            }
1036        }
1037        return $arrChildren;
1038    }
1039
1040    /**
1041     * 所属するすべての階層の親IDを配列で返す.
1042     *
1043     * @param SC_Query $objQuery SC_Query インスタンス
1044     * @param string $table テーブル名
1045     * @param string $pid_name 親ID名
1046     * @param string $id_name ID名
1047     * @param integer $id ID
1048     * @return array 親IDの配列
1049     */
1050    function sfGetParents($objQuery, $table, $pid_name, $id_name, $id) {
1051        $arrRet = $this->sfGetParentsArray($table, $pid_name, $id_name, $id);
1052        // 配列の先頭1つを削除する。
1053        array_shift($arrRet);
1054        return $arrRet;
1055    }
1056
1057    /**
1058     * 階層構造のテーブルから親ID配列を取得する.
1059     *
1060     * @param string $table テーブル名
1061     * @param string $pid_name 親ID名
1062     * @param string $id_name ID名
1063     * @param integer $id ID
1064     * @return array 親IDの配列
1065     */
1066    function sfGetParentsArray($table, $pid_name, $id_name, $id) {
1067        $objQuery = new SC_Query();
1068        $col = $pid_name . "," . $id_name;
1069        $arrData = $objQuery->select($col, $table);
1070
1071        $arrParents = array();
1072        $arrParents[] = $id;
1073        $child = $id;
1074
1075        $ret = SC_Utils::sfGetParentsArraySub($arrData, $pid_name, $id_name, $child);
1076
1077        while($ret != "") {
1078            $arrParents[] = $ret;
1079            $ret = SC_Utils::sfGetParentsArraySub($arrData, $pid_name, $id_name, $ret);
1080        }
1081
1082        $arrParents = array_reverse($arrParents);
1083
1084        return $arrParents;
1085    }
1086
1087    /**
1088     * カテゴリから商品を検索する場合のWHERE文と値を返す.
1089     *
1090     * @param integer $category_id カテゴリID
1091     * @return array 商品を検索する場合の配列
1092     */
1093    function sfGetCatWhere($category_id) {
1094        // 子カテゴリIDの取得
1095        $arrRet = $this->sfGetChildsID("dtb_category", "parent_category_id", "category_id", $category_id);
1096        $tmp_where = "";
1097        foreach ($arrRet as $val) {
1098            if($tmp_where == "") {
1099                $tmp_where.= " category_id IN ( ?";
1100            } else {
1101                $tmp_where.= ",? ";
1102            }
1103            $arrval[] = $val;
1104        }
1105        $tmp_where.= " ) ";
1106        return array($tmp_where, $arrval);
1107    }
1108
1109    /**
1110     * 受注一時テーブルから情報を取得する.
1111     *
1112     * @param integer $order_temp_id 受注一時ID
1113     * @return array 受注一時情報の配列
1114     */
1115    function sfGetOrderTemp($order_temp_id) {
1116        $objQuery = new SC_Query();
1117        $where = "order_temp_id = ?";
1118        $arrRet = $objQuery->select("*", "dtb_order_temp", $where, array($order_temp_id));
1119        return $arrRet[0];
1120    }
1121
1122    /**
1123     * SELECTボックス用リストを作成する.
1124     *
1125     * @param string $table テーブル名
1126     * @param string $keyname プライマリーキーのカラム名
1127     * @param string $valname データ内容のカラム名
1128     * @return array SELECT ボックス用リストの配列
1129     */
1130    function sfGetIDValueList($table, $keyname, $valname) {
1131        $objQuery = new SC_Query();
1132        $col = "$keyname, $valname";
1133        $objQuery->setwhere("del_flg = 0");
1134        $objQuery->setorder("rank DESC");
1135        $arrList = $objQuery->select($col, $table);
1136        $count = count($arrList);
1137        for($cnt = 0; $cnt < $count; $cnt++) {
1138            $key = $arrList[$cnt][$keyname];
1139            $val = $arrList[$cnt][$valname];
1140            $arrRet[$key] = $val;
1141        }
1142        return $arrRet;
1143    }
1144
1145    /**
1146     * ランキングを上げる.
1147     *
1148     * @param string $table テーブル名
1149     * @param string $colname カラム名
1150     * @param string|integer $id テーブルのキー
1151     * @param string $andwhere SQL の AND 条件である WHERE 句
1152     * @return void
1153     */
1154    function sfRankUp($table, $colname, $id, $andwhere = "") {
1155        $objQuery = new SC_Query();
1156        $objQuery->begin();
1157        $where = "$colname = ?";
1158        if($andwhere != "") {
1159            $where.= " AND $andwhere";
1160        }
1161        // 対象項目のランクを取得
1162        $rank = $objQuery->get($table, "rank", $where, array($id));
1163        // ランクの最大値を取得
1164        $maxrank = $objQuery->max($table, "rank", $andwhere);
1165        // ランクが最大値よりも小さい場合に実行する。
1166        if($rank < $maxrank) {
1167            // ランクが一つ上のIDを取得する。
1168            $where = "rank = ?";
1169            if($andwhere != "") {
1170                $where.= " AND $andwhere";
1171            }
1172            $uprank = $rank + 1;
1173            $up_id = $objQuery->get($table, $colname, $where, array($uprank));
1174            // ランク入れ替えの実行
1175            $sqlup = "UPDATE $table SET rank = ? WHERE $colname = ?";
1176            if($andwhere != "") {
1177                $sqlup.= " AND $andwhere";
1178            }
1179            $objQuery->exec($sqlup, array($rank + 1, $id));
1180            $objQuery->exec($sqlup, array($rank, $up_id));
1181        }
1182        $objQuery->commit();
1183    }
1184
1185    /**
1186     * ランキングを下げる.
1187     *
1188     * @param string $table テーブル名
1189     * @param string $colname カラム名
1190     * @param string|integer $id テーブルのキー
1191     * @param string $andwhere SQL の AND 条件である WHERE 句
1192     * @return void
1193     */
1194    function sfRankDown($table, $colname, $id, $andwhere = "") {
1195        $objQuery = new SC_Query();
1196        $objQuery->begin();
1197        $where = "$colname = ?";
1198        if($andwhere != "") {
1199            $where.= " AND $andwhere";
1200        }
1201        // 対象項目のランクを取得
1202        $rank = $objQuery->get($table, "rank", $where, array($id));
1203
1204        // ランクが1(最小値)よりも大きい場合に実行する。
1205        if($rank > 1) {
1206            // ランクが一つ下のIDを取得する。
1207            $where = "rank = ?";
1208            if($andwhere != "") {
1209                $where.= " AND $andwhere";
1210            }
1211            $downrank = $rank - 1;
1212            $down_id = $objQuery->get($table, $colname, $where, array($downrank));
1213            // ランク入れ替えの実行
1214            $sqlup = "UPDATE $table SET rank = ? WHERE $colname = ?";
1215            if($andwhere != "") {
1216                $sqlup.= " AND $andwhere";
1217            }
1218            $objQuery->exec($sqlup, array($rank - 1, $id));
1219            $objQuery->exec($sqlup, array($rank, $down_id));
1220        }
1221        $objQuery->commit();
1222    }
1223
1224    /**
1225     * 指定順位へ移動する.
1226     *
1227     * @param string $tableName テーブル名
1228     * @param string $keyIdColumn キーを保持するカラム名
1229     * @param string|integer $keyId キーの値
1230     * @param integer $pos 指定順位
1231     * @param string $where SQL の AND 条件である WHERE 句
1232     * @return void
1233     */
1234    function sfMoveRank($tableName, $keyIdColumn, $keyId, $pos, $where = "") {
1235        $objQuery = new SC_Query();
1236        $objQuery->begin();
1237
1238        // 自身のランクを取得する
1239        $rank = $objQuery->get($tableName, "rank", "$keyIdColumn = ?", array($keyId));
1240
1241        $max = $objQuery->max($tableName, "rank", $where);
1242
1243        // 値の調整(逆順)
1244        if($pos > $max) {
1245            $position = 1;
1246        } else if($pos < 1) {
1247            $position = $max;
1248        } else {
1249            $position = $max - $pos + 1;
1250        }
1251
1252        //入れ替え先の順位が入れ換え元の順位より大きい場合
1253        if( $position > $rank ) $term = "rank - 1";
1254
1255        //入れ替え先の順位が入れ換え元の順位より小さい場合
1256        if( $position < $rank ) $term = "rank + 1";
1257
1258        // XXX 入れ替え先の順位が入れ替え元の順位と同じ場合
1259        if (!isset($term)) $term = "rank";
1260
1261        // 指定した順位の商品から移動させる商品までのrankを1つずらす
1262        $sql = "UPDATE $tableName SET rank = $term WHERE rank BETWEEN ? AND ?";
1263        if($where != "") {
1264            $sql.= " AND $where";
1265        }
1266
1267        if( $position > $rank ) $objQuery->exec( $sql, array( $rank + 1, $position ));
1268        if( $position < $rank ) $objQuery->exec( $sql, array( $position, $rank - 1 ));
1269
1270        // 指定した順位へrankを書き換える。
1271        $sql  = "UPDATE $tableName SET rank = ? WHERE $keyIdColumn = ? ";
1272        if($where != "") {
1273            $sql.= " AND $where";
1274        }
1275
1276        $objQuery->exec( $sql, array( $position, $keyId ) );
1277        $objQuery->commit();
1278    }
1279
1280    /**
1281     * ランクを含むレコードを削除する.
1282     *
1283     * レコードごと削除する場合は、$deleteをtrueにする
1284     *
1285     * @param string $table テーブル名
1286     * @param string $colname カラム名
1287     * @param string|integer $id テーブルのキー
1288     * @param string $andwhere SQL の AND 条件である WHERE 句
1289     * @param bool $delete レコードごと削除する場合 true,
1290     *                     レコードごと削除しない場合 false
1291     * @return void
1292     */
1293    function sfDeleteRankRecord($table, $colname, $id, $andwhere = "",
1294                                $delete = false) {
1295        $objQuery = new SC_Query();
1296        $objQuery->begin();
1297        // 削除レコードのランクを取得する。
1298        $where = "$colname = ?";
1299        if($andwhere != "") {
1300            $where.= " AND $andwhere";
1301        }
1302        $rank = $objQuery->get($table, "rank", $where, array($id));
1303
1304        if(!$delete) {
1305            // ランクを最下位にする、DELフラグON
1306            $sqlup = "UPDATE $table SET rank = 0, del_flg = 1 ";
1307            $sqlup.= "WHERE $colname = ?";
1308            // UPDATEの実行
1309            $objQuery->exec($sqlup, array($id));
1310        } else {
1311            $objQuery->delete($table, "$colname = ?", array($id));
1312        }
1313
1314        // 追加レコードのランクより上のレコードを一つずらす。
1315        $where = "rank > ?";
1316        if($andwhere != "") {
1317            $where.= " AND $andwhere";
1318        }
1319        $sqlup = "UPDATE $table SET rank = (rank - 1) WHERE $where";
1320        $objQuery->exec($sqlup, array($rank));
1321        $objQuery->commit();
1322    }
1323
1324    /**
1325     * 親IDの配列を元に特定のカラムを取得する.
1326     *
1327     * @param SC_Query $objQuery SC_Query インスタンス
1328     * @param string $table テーブル名
1329     * @param string $id_name ID名
1330     * @param string $col_name カラム名
1331     * @param array $arrId IDの配列
1332     * @return array 特定のカラムの配列
1333     */
1334    function sfGetParentsCol($objQuery, $table, $id_name, $col_name, $arrId ) {
1335        $col = $col_name;
1336        $len = count($arrId);
1337        $where = "";
1338
1339        for($cnt = 0; $cnt < $len; $cnt++) {
1340            if($where == "") {
1341                $where = "$id_name = ?";
1342            } else {
1343                $where.= " OR $id_name = ?";
1344            }
1345        }
1346
1347        $objQuery->setorder("level");
1348        $arrRet = $objQuery->select($col, $table, $where, $arrId);
1349        return $arrRet;
1350    }
1351
1352    /**
1353     * カテゴリ変更時の移動処理を行う.
1354     *
1355     * @param SC_Query $objQuery SC_Query インスタンス
1356     * @param string $table テーブル名
1357     * @param string $id_name ID名
1358     * @param string $cat_name カテゴリ名
1359     * @param integer $old_catid 旧カテゴリID
1360     * @param integer $new_catid 新カテゴリID
1361     * @param integer $id ID
1362     * @return void
1363     */
1364    function sfMoveCatRank($objQuery, $table, $id_name, $cat_name, $old_catid, $new_catid, $id) {
1365        if ($old_catid == $new_catid) {
1366            return;
1367        }
1368        // 旧カテゴリでのランク削除処理
1369        // 移動レコードのランクを取得する。
1370        $where = "$id_name = ?";
1371        $rank = $objQuery->get($table, "rank", $where, array($id));
1372        // 削除レコードのランクより上のレコードを一つ下にずらす。
1373        $where = "rank > ? AND $cat_name = ?";
1374        $sqlup = "UPDATE $table SET rank = (rank - 1) WHERE $where";
1375        $objQuery->exec($sqlup, array($rank, $old_catid));
1376        // 新カテゴリでの登録処理
1377        // 新カテゴリの最大ランクを取得する。
1378        $max_rank = $objQuery->max($table, "rank", "$cat_name = ?", array($new_catid)) + 1;
1379        $where = "$id_name = ?";
1380        $sqlup = "UPDATE $table SET rank = ? WHERE $where";
1381        $objQuery->exec($sqlup, array($max_rank, $id));
1382    }
1383
1384    /**
1385     * 配送時間を取得する.
1386     *
1387     * @param integer $payment_id 支払い方法ID
1388     * @return array 配送時間の配列
1389     */
1390    function sfGetDelivTime($payment_id = "") {
1391        $objQuery = new SC_Query();
1392
1393        $deliv_id = "";
1394        $arrRet = array();
1395
1396        if($payment_id != "") {
1397            $where = "del_flg = 0 AND payment_id = ?";
1398            $arrRet = $objQuery->select("deliv_id", "dtb_payment", $where, array($payment_id));
1399            $deliv_id = $arrRet[0]['deliv_id'];
1400        }
1401
1402        if($deliv_id != "") {
1403            $objQuery->setorder("time_id");
1404            $where = "deliv_id = ?";
1405            $arrRet= $objQuery->select("time_id, deliv_time", "dtb_delivtime", $where, array($deliv_id));
1406        }
1407
1408        return $arrRet;
1409    }
1410
1411    /**
1412     * 都道府県、支払い方法から配送料金を取得する.
1413     *
1414     * @param integer $pref 都道府県ID
1415     * @param integer $payment_id 支払い方法ID
1416     * @return string 指定の都道府県, 支払い方法の配送料金
1417     */
1418    function sfGetDelivFee($pref, $payment_id = "") {
1419        $objQuery = new SC_Query();
1420
1421        $deliv_id = "";
1422
1423        // 支払い方法が指定されている場合は、対応した配送業者を取得する
1424        if($payment_id != "") {
1425            $where = "del_flg = 0 AND payment_id = ?";
1426            $arrRet = $objQuery->select("deliv_id", "dtb_payment", $where, array($payment_id));
1427            $deliv_id = $arrRet[0]['deliv_id'];
1428        // 支払い方法が指定されていない場合は、先頭の配送業者を取得する
1429        } else {
1430            $where = "del_flg = 0";
1431            $objQuery->setOrder("rank DESC");
1432            $objQuery->setLimitOffset(1);
1433            $arrRet = $objQuery->select("deliv_id", "dtb_deliv", $where);
1434            $deliv_id = $arrRet[0]['deliv_id'];
1435        }
1436
1437        // 配送業者から配送料を取得
1438        if($deliv_id != "") {
1439
1440            // 都道府県が指定されていない場合は、東京都の番号を指定しておく
1441            if($pref == "") {
1442                $pref = 13;
1443            }
1444
1445            $objQuery = new SC_Query();
1446            $where = "deliv_id = ? AND pref = ?";
1447            $arrRet= $objQuery->select("fee", "dtb_delivfee", $where, array($deliv_id, $pref));
1448        }
1449        return $arrRet[0]['fee'];
1450    }
1451
1452    /**
1453     * 集計情報を元に最終計算を行う.
1454     *
1455     * @param array $arrData 各種情報
1456     * @param LC_Page $objPage LC_Page インスタンス
1457     * @param SC_CartSession $objCartSess SC_CartSession インスタンス
1458     * @param array $arrInfo 店舗情報の配列
1459     * @param SC_Customer $objCustomer SC_Customer インスタンス
1460     * @return array 最終計算後の配列
1461     */
1462    function sfTotalConfirm($arrData, &$objPage, &$objCartSess, $arrInfo, $objCustomer = "") {
1463        // 未定義変数を定義
1464        if (!isset($arrData['deliv_pref'])) $arrData['deliv_pref'] = "";
1465        if (!isset($arrData['payment_id'])) $arrData['payment_id'] = "";
1466        if (!isset($arrData['charge'])) $arrData['charge'] = "";
1467        if (!isset($arrData['use_point'])) $arrData['use_point'] = "";
1468
1469        // 商品の合計数量
1470        $total_quantity = $objCartSess->getTotalQuantity(true);
1471
1472        // 税金の取得
1473        $arrData['tax'] = $objPage->tpl_total_tax;
1474        // 小計の取得
1475        $arrData['subtotal'] = $objPage->tpl_total_pretax;
1476
1477        // 合計送料の取得
1478        $arrData['deliv_fee'] = 0;
1479
1480        // 商品ごとの送料が有効の場合
1481        if (OPTION_PRODUCT_DELIV_FEE == 1) {
1482            $arrData['deliv_fee']+= $objCartSess->getAllProductsDelivFee();
1483        }
1484
1485        // 配送業者の送料が有効の場合
1486        if (OPTION_DELIV_FEE == 1) {
1487            // 送料の合計を計算する
1488            $arrData['deliv_fee']
1489                += $this->sfGetDelivFee($arrData['deliv_pref'],
1490                                           $arrData['payment_id']);
1491
1492        }
1493
1494        // 送料無料の購入数が設定されている場合
1495        if(DELIV_FREE_AMOUNT > 0) {
1496            if($total_quantity >= DELIV_FREE_AMOUNT) {
1497                $arrData['deliv_fee'] = 0;
1498            }
1499        }
1500
1501        // 送料無料条件が設定されている場合
1502        if($arrInfo['free_rule'] > 0) {
1503            // 小計が無料条件を超えている場合
1504            if($arrData['subtotal'] >= $arrInfo['free_rule']) {
1505                $arrData['deliv_fee'] = 0;
1506            }
1507        }
1508
1509        // 合計の計算
1510        $arrData['total'] = $objPage->tpl_total_pretax; // 商品合計
1511        $arrData['total']+= $arrData['deliv_fee'];      // 送料
1512        $arrData['total']+= $arrData['charge'];         // 手数料
1513        // お支払い合計
1514        $arrData['payment_total'] = $arrData['total'] - ($arrData['use_point'] * POINT_VALUE);
1515        // 加算ポイントの計算
1516        $arrData['add_point'] = SC_Utils::sfGetAddPoint($objPage->tpl_total_point, $arrData['use_point'], $arrInfo);
1517           
1518            if($objCustomer != "") {
1519                // 誕生日月であった場合
1520                if($objCustomer->isBirthMonth()) {
1521                    $arrData['birth_point'] = BIRTH_MONTH_POINT;
1522                    $arrData['add_point'] += $arrData['birth_point'];
1523            }
1524        }
1525
1526        if($arrData['add_point'] < 0) {
1527            $arrData['add_point'] = 0;
1528        }
1529        return $arrData;
1530    }
1531
1532    /**
1533     * レコードの存在チェックを行う.
1534     *
1535     * @param string $table テーブル名
1536     * @param string $col カラム名
1537     * @param array $arrval 要素の配列
1538     * @param array $addwhere SQL の AND 条件である WHERE 句
1539     * @return bool レコードが存在する場合 true
1540     */
1541    function sfIsRecord($table, $col, $arrval, $addwhere = "") {
1542        $objQuery = new SC_Query();
1543        $arrCol = split("[, ]", $col);
1544
1545        $where = "del_flg = 0";
1546
1547        if($addwhere != "") {
1548            $where.= " AND $addwhere";
1549        }
1550
1551        foreach($arrCol as $val) {
1552            if($val != "") {
1553                if($where == "") {
1554                    $where = "$val = ?";
1555                } else {
1556                    $where.= " AND $val = ?";
1557                }
1558            }
1559        }
1560        $ret = $objQuery->get($table, $col, $where, $arrval);
1561
1562        if($ret != "") {
1563            return true;
1564        }
1565        return false;
1566    }
1567
1568    /**
1569     * メーカー商品数数の登録を行う.
1570     *
1571     * @param SC_Query $objQuery SC_Query インスタンス
1572     * @return void
1573     */
1574    function sfMaker_Count($objQuery){
1575        $sql = "";
1576
1577        //テーブル内容の削除
1578        $objQuery->query("DELETE FROM dtb_maker_count");
1579
1580        //各メーカーの商品数を数えて格納
1581        $sql = " INSERT INTO dtb_maker_count(maker_id, product_count, create_date) ";
1582        $sql .= " SELECT T1.maker_id, count(T2.maker_id), now() ";
1583        $sql .= " FROM dtb_maker AS T1 LEFT JOIN dtb_products AS T2";
1584        $sql .= " ON T1.maker_id = T2.maker_id ";
1585        $sql .= " WHERE T2.del_flg = 0 AND T2.status = 1 ";
1586        $sql .= " GROUP BY T1.maker_id, T2.maker_id ";
1587        $objQuery->query($sql);
1588    }
1589
1590    /**
1591     * 選択中の商品のメーカーを取得する.
1592     *
1593     * @param integer $product_id プロダクトID
1594     * @param integer $maker_id メーカーID
1595     * @return array 選択中の商品のメーカーIDの配列
1596     *
1597     */
1598    function sfGetMakerId($product_id, $maker_id = 0, $closed = false) {
1599        if ($closed) {
1600            $status = "";
1601        } else {
1602            $status = "status = 1";
1603        }
1604
1605        if(!$this->g_maker_on) {
1606            $this->g_maker_on = true;
1607            $maker_id = (int) $maker_id;
1608            $product_id = (int) $product_id;
1609            if(SC_Utils_Ex::sfIsInt($maker_id) && $this->sfIsRecord("dtb_maker","maker_id", $maker_id)) {
1610                $this->g_maker_id = array($maker_id);
1611            } else if (SC_Utils_Ex::sfIsInt($product_id) && $this->sfIsRecord("dtb_products","product_id", $product_id, $status)) {
1612                $objQuery = new SC_Query();
1613                $where = "product_id = ?";
1614                $maker_id = $objQuery->getCol("dtb_productes", "maker_id", "product_id = ?", array($product_id));
1615                $this->g_maker_id = $maker_id;
1616            } else {
1617                // 不正な場合は、空の配列を返す。
1618                $this->g_maker_id = array();
1619            }
1620        }
1621        return $this->g_maker_id;
1622    }
1623
1624    /**
1625     * メーカーの取得を行う.
1626     *
1627     * $products_check:true商品登録済みのものだけ取得する
1628     *
1629     * @param string $addwhere 追加する WHERE 句
1630     * @param bool $products_check 商品の存在するカテゴリのみ取得する場合 true
1631     * @return array カテゴリツリーの配列
1632     */
1633    function sfGetMakerList($addwhere = "", $products_check = false) {
1634        $objQuery = new SC_Query();
1635        $where = "del_flg = 0";
1636
1637        if($addwhere != "") {
1638            $where.= " AND $addwhere";
1639        }
1640
1641        $objQuery->setoption("ORDER BY rank DESC");
1642
1643        if($products_check) {
1644            $col = "T1.maker_id, name";
1645            $from = "dtb_maker AS T1 LEFT JOIN dtb_maker_count AS T2 ON T1.maker_id = T2.maker_id";
1646            $where .= " AND product_count > 0";
1647        } else {
1648            $col = "maker_id, name";
1649            $from = "dtb_maker";
1650        }
1651
1652        $arrRet = $objQuery->select($col, $from, $where);
1653
1654        $max = count($arrRet);
1655        for($cnt = 0; $cnt < $max; $cnt++) {
1656            $id = $arrRet[$cnt]['maker_id'];
1657            $name = $arrRet[$cnt]['name'];
1658            $arrList[$id].= $name;
1659        }
1660        return $arrList;
1661    }
1662
1663
1664
1665}
1666?>
Note: See TracBrowser for help on using the repository browser.