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

Revision 18023, 64.3 KB checked in by Seasoft, 15 years ago (diff)

#472「管理機能の配送業者の追加でエラー」を修正。

  • 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            // 受注_Tempテーブルの名称列を更新
429            $this->sfUpdateOrderNameCol($uniqid, true);
430        }
431    }
432
433    /**
434     * 会員情報から SQL文の値を生成する.
435     *
436     * @param string $uniqid ユニークID
437     * @param array $sqlval SQL の値の配列
438     * @return array 会員情報を含んだ SQL の値の配列
439     */
440    function sfGetCustomerSqlVal($uniqid, $sqlval) {
441        $objCustomer = new SC_Customer();
442        // 会員情報登録処理
443        if ($objCustomer->isLoginSuccess(true)) {
444            // 登録データの作成
445            $sqlval['order_temp_id'] = $uniqid;
446            $sqlval['update_date'] = 'Now()';
447            $sqlval['customer_id'] = $objCustomer->getValue('customer_id');
448            $sqlval['order_name01'] = $objCustomer->getValue('name01');
449            $sqlval['order_name02'] = $objCustomer->getValue('name02');
450            $sqlval['order_kana01'] = $objCustomer->getValue('kana01');
451            $sqlval['order_kana02'] = $objCustomer->getValue('kana02');
452            $sqlval['order_sex'] = $objCustomer->getValue('sex');
453            $sqlval['order_zip01'] = $objCustomer->getValue('zip01');
454            $sqlval['order_zip02'] = $objCustomer->getValue('zip02');
455            $sqlval['order_pref'] = $objCustomer->getValue('pref');
456            $sqlval['order_addr01'] = $objCustomer->getValue('addr01');
457            $sqlval['order_addr02'] = $objCustomer->getValue('addr02');
458            $sqlval['order_tel01'] = $objCustomer->getValue('tel01');
459            $sqlval['order_tel02'] = $objCustomer->getValue('tel02');
460            $sqlval['order_tel03'] = $objCustomer->getValue('tel03');
461            if (defined('MOBILE_SITE')) {
462                $email_mobile = $objCustomer->getValue('email_mobile');
463                if (empty($email_mobile)) {
464                    $sqlval['order_email'] = $objCustomer->getValue('email');
465                } else {
466                    $sqlval['order_email'] = $email_mobile;
467                }
468            } else {
469                $sqlval['order_email'] = $objCustomer->getValue('email');
470            }
471            $sqlval['order_job'] = $objCustomer->getValue('job');
472            $sqlval['order_birth'] = $objCustomer->getValue('birth');
473        }
474        return $sqlval;
475    }
476
477    /**
478     * 会員編集登録処理を行う.
479     *
480     * @param array $array パラメータの配列
481     * @param array $arrRegistColumn 登録するカラムの配列
482     * @return void
483     */
484    function sfEditCustomerData($array, $arrRegistColumn) {
485        $objQuery = new SC_Query();
486
487        foreach ($arrRegistColumn as $data) {
488            if ($data["column"] != "password") {
489                if($array[ $data['column'] ] != "") {
490                    $arrRegist[ $data["column"] ] = $array[ $data["column"] ];
491                } else {
492                    $arrRegist[ $data['column'] ] = NULL;
493                }
494            }
495        }
496        if (strlen($array["year"]) > 0 && strlen($array["month"]) > 0 && strlen($array["day"]) > 0) {
497            $arrRegist["birth"] = $array["year"] ."/". $array["month"] ."/". $array["day"] ." 00:00:00";
498        } else {
499            $arrRegist["birth"] = NULL;
500        }
501
502        //-- パスワードの更新がある場合は暗号化。(更新がない場合はUPDATE文を構成しない)
503        if ($array["password"] != DEFAULT_PASSWORD) $arrRegist["password"] = sha1($array["password"] . ":" . AUTH_MAGIC);
504        $arrRegist["update_date"] = "NOW()";
505
506        //-- 編集登録実行
507        $objQuery->begin();
508        $objQuery->update("dtb_customer", $arrRegist, "customer_id = ? ", array($array['customer_id']));
509        $objQuery->commit();
510    }
511
512    /**
513     * 注文番号、利用ポイント、加算ポイントから最終ポイントを取得する.
514     *
515     * @param integer $order_id 注文番号
516     * @param integer $use_point 利用ポイント
517     * @param integer $add_point 加算ポイント
518     * @return array 最終ポイントの配列
519     */
520    function sfGetCustomerPoint($order_id, $use_point, $add_point) {
521        $objQuery = new SC_Query();
522        $arrRet = $objQuery->select("customer_id", "dtb_order", "order_id = ?", array($order_id));
523        $customer_id = $arrRet[0]['customer_id'];
524        if($customer_id != "" && $customer_id >= 1) {
525    if (USE_POINT !== false) {
526            $arrRet = $objQuery->select("point", "dtb_customer", "customer_id = ?", array($customer_id));
527            $point = $arrRet[0]['point'];
528            $total_point = $arrRet[0]['point'] - $use_point + $add_point;
529    } else {
530        $total_point = 0;
531            $point = 0;
532    }
533        } else {
534            $total_point = "";
535            $point = "";
536        }
537        return array($point, $total_point);
538    }
539
540    /**
541     * カテゴリツリーの取得を行う.
542     *
543     * @param integer $parent_category_id 親カテゴリID
544     * @param bool $count_check 登録商品数のチェックを行う場合 true
545     * @return array カテゴリツリーの配列
546     */
547    function sfGetCatTree($parent_category_id, $count_check = false) {
548        $objQuery = new SC_Query();
549        $col = "";
550        $col .= " cat.category_id,";
551        $col .= " cat.category_name,";
552        $col .= " cat.parent_category_id,";
553        $col .= " cat.level,";
554        $col .= " cat.rank,";
555        $col .= " cat.creator_id,";
556        $col .= " cat.create_date,";
557        $col .= " cat.update_date,";
558        $col .= " cat.del_flg, ";
559        $col .= " ttl.product_count";
560        $from = "dtb_category as cat left join dtb_category_total_count as ttl on ttl.category_id = cat.category_id";
561        // 登録商品数のチェック
562        if($count_check) {
563            $where = "del_flg = 0 AND product_count > 0";
564        } else {
565            $where = "del_flg = 0";
566        }
567        $objQuery->setoption("ORDER BY rank DESC");
568        $arrRet = $objQuery->select($col, $from, $where);
569
570        $arrParentID = $this->sfGetParents($objQuery, 'dtb_category', 'parent_category_id', 'category_id', $parent_category_id);
571
572        foreach($arrRet as $key => $array) {
573            foreach($arrParentID as $val) {
574                if($array['category_id'] == $val) {
575                    $arrRet[$key]['display'] = 1;
576                    break;
577                }
578            }
579        }
580
581        return $arrRet;
582    }
583
584    /**
585     * カテゴリツリーの取得を複数カテゴリーで行う.
586     *
587     * @param integer $product_id 商品ID
588     * @param bool $count_check 登録商品数のチェックを行う場合 true
589     * @return array カテゴリツリーの配列
590     */
591    function sfGetMultiCatTree($product_id, $count_check = false) {
592        $objQuery = new SC_Query();
593        $col = "";
594        $col .= " cat.category_id,";
595        $col .= " cat.category_name,";
596        $col .= " cat.parent_category_id,";
597        $col .= " cat.level,";
598        $col .= " cat.rank,";
599        $col .= " cat.creator_id,";
600        $col .= " cat.create_date,";
601        $col .= " cat.update_date,";
602        $col .= " cat.del_flg, ";
603        $col .= " ttl.product_count";
604        $from = "dtb_category as cat left join dtb_category_total_count as ttl on ttl.category_id = cat.category_id";
605        // 登録商品数のチェック
606        if($count_check) {
607            $where = "del_flg = 0 AND product_count > 0";
608        } else {
609            $where = "del_flg = 0";
610        }
611        $objQuery->setoption("ORDER BY rank DESC");
612        $arrRet = $objQuery->select($col, $from, $where);
613
614        $arrCategory_id = $this->sfGetCategoryId($product_id, $status);
615
616        $arrCatTree = array();
617        foreach ($arrCategory_id as $pkey => $parent_category_id) {
618            $arrParentID = $this->sfGetParents($objQuery, 'dtb_category', 'parent_category_id', 'category_id', $parent_category_id);
619
620            foreach($arrParentID as $pid) {
621                foreach($arrRet as $key => $array) {
622                    if($array['category_id'] == $pid) {
623                        $arrCatTree[$pkey][] = $arrRet[$key];
624                        break;
625                    }
626                }
627            }
628        }
629
630        return $arrCatTree;
631    }
632
633    /**
634     * 親カテゴリーを連結した文字列を取得する.
635     *
636     * @param integer $category_id カテゴリID
637     * @return string 親カテゴリーを連結した文字列
638     */
639    function sfGetCatCombName($category_id){
640        // 商品が属するカテゴリIDを縦に取得
641        $objQuery = new SC_Query();
642        $arrCatID = $this->sfGetParents($objQuery, "dtb_category", "parent_category_id", "category_id", $category_id);
643        $ConbName = "";
644
645        // カテゴリー名称を取得する
646        foreach($arrCatID as $key => $val){
647            $sql = "SELECT category_name FROM dtb_category WHERE category_id = ?";
648            $arrVal = array($val);
649            $CatName = $objQuery->getOne($sql,$arrVal);
650            $ConbName .= $CatName . ' | ';
651        }
652        // 最後の | をカットする
653        $ConbName = substr_replace($ConbName, "", strlen($ConbName) - 2, 2);
654
655        return $ConbName;
656    }
657
658    /**
659     * 指定したカテゴリーIDのカテゴリーを取得する.
660     *
661     * @param integer $category_id カテゴリID
662     * @return array 指定したカテゴリーIDのカテゴリー
663     */
664    function sfGetCat($category_id){
665        $objQuery = new SC_Query();
666
667        // カテゴリーを取得する
668        $arrVal = array($category_id);
669        $res = $objQuery->select('category_id AS id, category_name AS name', 'dtb_category', 'category_id = ?', $arrVal);
670
671        return $res[0];
672    }
673
674    /**
675     * 指定したカテゴリーIDの大カテゴリーを取得する.
676     *
677     * @param integer $category_id カテゴリID
678     * @return array 指定したカテゴリーIDの大カテゴリー
679     */
680    function sfGetFirstCat($category_id){
681        // 商品が属するカテゴリIDを縦に取得
682        $objQuery = new SC_Query();
683        $arrRet = array();
684        $arrCatID = $this->sfGetParents($objQuery, "dtb_category", "parent_category_id", "category_id", $category_id);
685        $arrRet['id'] = $arrCatID[0];
686
687        // カテゴリー名称を取得する
688        $sql = "SELECT category_name FROM dtb_category WHERE category_id = ?";
689        $arrVal = array($arrRet['id']);
690        $arrRet['name'] = $objQuery->getOne($sql,$arrVal);
691
692        return $arrRet;
693    }
694
695    /**
696     * カテゴリツリーの取得を行う.
697     *
698     * $products_check:true商品登録済みのものだけ取得する
699     *
700     * @param string $addwhere 追加する WHERE 句
701     * @param bool $products_check 商品の存在するカテゴリのみ取得する場合 true
702     * @param string $head カテゴリ名のプレフィックス文字列
703     * @return array カテゴリツリーの配列
704     */
705    function sfGetCategoryList($addwhere = "", $products_check = false, $head = CATEGORY_HEAD) {
706        $objQuery = new SC_Query();
707        $where = "del_flg = 0";
708
709        if($addwhere != "") {
710            $where.= " AND $addwhere";
711        }
712
713        $objQuery->setoption("ORDER BY rank DESC");
714
715        if($products_check) {
716            $col = "T1.category_id, category_name, level";
717            $from = "dtb_category AS T1 LEFT JOIN dtb_category_total_count AS T2 ON T1.category_id = T2.category_id";
718            $where .= " AND product_count > 0";
719        } else {
720            $col = "category_id, category_name, level";
721            $from = "dtb_category";
722        }
723
724        $arrRet = $objQuery->select($col, $from, $where);
725
726        $max = count($arrRet);
727        for($cnt = 0; $cnt < $max; $cnt++) {
728            $id = $arrRet[$cnt]['category_id'];
729            $name = $arrRet[$cnt]['category_name'];
730            $arrList[$id] = str_repeat($head, $arrRet[$cnt]['level']) . $name;
731        }
732        return $arrList;
733    }
734
735    /**
736     * カテゴリーツリーの取得を行う.
737     *
738     * 親カテゴリの Value=0 を対象とする
739     *
740     * @param bool $parent_zero 親カテゴリの Value=0 の場合 true
741     * @return array カテゴリツリーの配列
742     */
743    function sfGetLevelCatList($parent_zero = true) {
744        $objQuery = new SC_Query();
745
746        // カテゴリ名リストを取得
747        $col = "category_id, parent_category_id, category_name";
748        $where = "del_flg = 0";
749        $objQuery->setoption("ORDER BY level");
750        $arrRet = $objQuery->select($col, "dtb_category", $where);
751        $arrCatName = array();
752        foreach ($arrRet as $arrTmp) {
753            $arrCatName[$arrTmp['category_id']] =
754                (($arrTmp['parent_category_id'] > 0)?
755                    $arrCatName[$arrTmp['parent_category_id']] : "")
756                . CATEGORY_HEAD . $arrTmp['category_name'];
757        }
758
759        $col = "category_id, parent_category_id, category_name, level";
760        $where = "del_flg = 0";
761        $objQuery->setoption("ORDER BY rank DESC");
762        $arrRet = $objQuery->select($col, "dtb_category", $where);
763        $max = count($arrRet);
764
765        for($cnt = 0; $cnt < $max; $cnt++) {
766            if($parent_zero) {
767                if($arrRet[$cnt]['level'] == LEVEL_MAX) {
768                    $arrValue[$cnt] = $arrRet[$cnt]['category_id'];
769                } else {
770                    $arrValue[$cnt] = "";
771                }
772            } else {
773                $arrValue[$cnt] = $arrRet[$cnt]['category_id'];
774            }
775
776            $arrOutput[$cnt] = $arrCatName[$arrRet[$cnt]['category_id']];
777        }
778
779        return array($arrValue, $arrOutput);
780    }
781
782    /**
783     * 選択中の商品のカテゴリを取得する.
784     *
785     * @param integer $product_id プロダクトID
786     * @param integer $category_id カテゴリID
787     * @return array 選択中の商品のカテゴリIDの配列
788     *
789     */
790    function sfGetCategoryId($product_id, $category_id = 0, $closed = false) {
791        if ($closed) {
792            $status = "";
793        } else {
794            $status = "status = 1";
795        }
796
797        if(!$this->g_category_on) {
798            $this->g_category_on = true;
799            $category_id = (int) $category_id;
800            $product_id = (int) $product_id;
801            if(SC_Utils_Ex::sfIsInt($category_id) && $this->sfIsRecord("dtb_category","category_id", $category_id)) {
802                $this->g_category_id = array($category_id);
803            } else if (SC_Utils_Ex::sfIsInt($product_id) && $this->sfIsRecord("dtb_products","product_id", $product_id, $status)) {
804                $objQuery = new SC_Query();
805                $where = "product_id = ?";
806                $category_id = $objQuery->getCol("dtb_product_categories", "category_id", "product_id = ?", array($product_id));
807                $this->g_category_id = $category_id;
808            } else {
809                // 不正な場合は、空の配列を返す。
810                $this->g_category_id = array();
811            }
812        }
813        return $this->g_category_id;
814    }
815
816    /**
817     * 商品をカテゴリの先頭に追加する.
818     *
819     * @param integer $category_id カテゴリID
820     * @param integer $product_id プロダクトID
821     * @return void
822     */
823    function addProductBeforCategories($category_id, $product_id) {
824
825        $sqlval = array("category_id" => $category_id,
826                        "product_id" => $product_id);
827
828        $objQuery = new SC_Query();
829
830        // 現在の商品カテゴリを取得
831        $arrCat = $objQuery->select("product_id, category_id, rank",
832                                    "dtb_product_categories",
833                                    "category_id = ?",
834                                    array($category_id));
835
836        $max = "0";
837        foreach ($arrCat as $val) {
838            // 同一商品が存在する場合は登録しない
839            if ($val["product_id"] == $product_id) {
840                return;
841            }
842            // 最上位ランクを取得
843            $max = ($max < $val["rank"]) ? $val["rank"] : $max;
844        }
845        $sqlval["rank"] = $max + 1;
846        $objQuery->insert("dtb_product_categories", $sqlval);
847    }
848
849    /**
850     * 商品をカテゴリの末尾に追加する.
851     *
852     * @param integer $category_id カテゴリID
853     * @param integer $product_id プロダクトID
854     * @return void
855     */
856    function addProductAfterCategories($category_id, $product_id) {
857        $sqlval = array("category_id" => $category_id,
858                        "product_id" => $product_id);
859
860        $objQuery = new SC_Query();
861
862        // 現在の商品カテゴリを取得
863        $arrCat = $objQuery->select("product_id, category_id, rank",
864                                    "dtb_product_categories",
865                                    "category_id = ?",
866                                    array($category_id));
867
868        $min = 0;
869        foreach ($arrCat as $val) {
870            // 同一商品が存在する場合は登録しない
871            if ($val["product_id"] == $product_id) {
872                return;
873            }
874            // 最下位ランクを取得
875            $min = ($min < $val["rank"]) ? $val["rank"] : $min;
876        }
877        $sqlval["rank"] = $min;
878        $objQuery->insert("dtb_product_categories", $sqlval);
879    }
880
881    /**
882     * 商品をカテゴリから削除する.
883     *
884     * @param integer $category_id カテゴリID
885     * @param integer $product_id プロダクトID
886     * @return void
887     */
888    function removeProductByCategories($category_id, $product_id) {
889        $sqlval = array("category_id" => $category_id,
890                        "product_id" => $product_id);
891        $objQuery = new SC_Query();
892        $objQuery->delete("dtb_product_categories",
893                          "category_id = ? AND product_id = ?", $sqlval);
894    }
895
896    /**
897     * 商品カテゴリを更新する.
898     *
899     * @param array $arrCategory_id 登録するカテゴリIDの配列
900     * @param integer $product_id プロダクトID
901     * @return void
902     */
903    function updateProductCategories($arrCategory_id, $product_id) {
904        $objQuery = new SC_Query();
905
906        // 現在のカテゴリ情報を取得
907        $arrCurrentCat = $objQuery->select("product_id, category_id, rank",
908                                           "dtb_product_categories",
909                                           "product_id = ?",
910                                           array($product_id));
911
912        // 登録するカテゴリ情報と比較
913        foreach ($arrCurrentCat as $val) {
914
915            // 登録しないカテゴリを削除
916            if (!in_array($val["category_id"], $arrCategory_id)) {
917                $this->removeProductByCategories($val["category_id"], $product_id);
918            }
919        }
920
921        // カテゴリを登録
922        foreach ($arrCategory_id as $category_id) {
923            $this->addProductBeforCategories($category_id, $product_id);
924        }
925    }
926
927    /**
928     * カテゴリ数の登録を行う.
929     *
930     * @param SC_Query $objQuery SC_Query インスタンス
931     * @return void
932     */
933    function sfCategory_Count($objQuery){
934
935        //テーブル内容の削除
936        $objQuery->query("DELETE FROM dtb_category_count");
937        $objQuery->query("DELETE FROM dtb_category_total_count");
938
939        $sql_where .= 'alldtl.del_flg = 0 AND alldtl.status = 1';
940        // 在庫無し商品の非表示
941        if (NOSTOCK_HIDDEN === true) {
942            $sql_where .= ' AND (alldtl.stock_max >= 1 OR alldtl.stock_unlimited_max = 1)';
943        }
944
945        //各カテゴリ内の商品数を数えて格納
946        $sql = <<< __EOS__
947            INSERT INTO dtb_category_count(category_id, product_count, create_date)
948            SELECT T1.category_id, count(T2.category_id), now()
949            FROM dtb_category AS T1
950                LEFT JOIN dtb_product_categories AS T2
951                    ON T1.category_id = T2.category_id
952                LEFT JOIN vw_products_allclass_detail AS alldtl
953                    ON T2.product_id = alldtl.product_id
954            WHERE $sql_where
955            GROUP BY T1.category_id, T2.category_id
956__EOS__;
957       
958        $objQuery->query($sql);
959
960        //子カテゴリ内の商品数を集計する
961       
962        // カテゴリ情報を取得
963        $arrCat = $objQuery->select('category_id', 'dtb_category');
964       
965        foreach ($arrCat as $row) {
966            $category_id = $row['category_id'];
967            $arrval = array();
968           
969            $arrval[] = $category_id;
970           
971            list($tmp_where, $tmp_arrval) = $this->sfGetCatWhere($category_id);
972            if ($tmp_where != "") {
973                $sql_where_product_ids = "alldtl.product_id IN (SELECT product_id FROM dtb_product_categories WHERE " . $tmp_where . ")";
974                $arrval = array_merge((array)$arrval, (array)$tmp_arrval);
975            } else {
976                $sql_where_product_ids = '0<>0'; // 一致させない
977            }
978           
979            $sql = <<< __EOS__
980                INSERT INTO dtb_category_total_count (category_id, product_count, create_date)
981                SELECT
982                    ?
983                    ,count(*)
984                    ,now()
985                FROM vw_products_allclass_detail AS alldtl
986                WHERE ($sql_where) AND ($sql_where_product_ids)
987__EOS__;
988           
989            $objQuery->query($sql, $arrval);
990        }
991    }
992
993    /**
994     * 子IDの配列を返す.
995     *
996     * @param string $table テーブル名
997     * @param string $pid_name 親ID名
998     * @param string $id_name ID名
999     * @param integer $id ID
1000     * @param array 子ID の配列
1001     */
1002    function sfGetChildsID($table, $pid_name, $id_name, $id) {
1003        $arrRet = $this->sfGetChildrenArray($table, $pid_name, $id_name, $id);
1004        return $arrRet;
1005    }
1006
1007    /**
1008     * 階層構造のテーブルから子ID配列を取得する.
1009     *
1010     * @param string $table テーブル名
1011     * @param string $pid_name 親ID名
1012     * @param string $id_name ID名
1013     * @param integer $id ID番号
1014     * @return array 子IDの配列
1015     */
1016    function sfGetChildrenArray($table, $pid_name, $id_name, $id) {
1017        $objQuery = new SC_Query();
1018        $col = $pid_name . "," . $id_name;
1019         $arrData = $objQuery->select($col, $table);
1020
1021        $arrPID = array();
1022        $arrPID[] = $id;
1023        $arrChildren = array();
1024        $arrChildren[] = $id;
1025
1026        $arrRet = $this->sfGetChildrenArraySub($arrData, $pid_name, $id_name, $arrPID);
1027
1028        while(count($arrRet) > 0) {
1029            $arrChildren = array_merge($arrChildren, $arrRet);
1030            $arrRet = $this->sfGetChildrenArraySub($arrData, $pid_name, $id_name, $arrRet);
1031        }
1032
1033        return $arrChildren;
1034    }
1035
1036    /**
1037     * 親ID直下の子IDをすべて取得する.
1038     *
1039     * @param array $arrData 親カテゴリの配列
1040     * @param string $pid_name 親ID名
1041     * @param string $id_name ID名
1042     * @param array $arrPID 親IDの配列
1043     * @return array 子IDの配列
1044     */
1045    function sfGetChildrenArraySub($arrData, $pid_name, $id_name, $arrPID) {
1046        $arrChildren = array();
1047        $max = count($arrData);
1048
1049        for($i = 0; $i < $max; $i++) {
1050            foreach($arrPID as $val) {
1051                if($arrData[$i][$pid_name] == $val) {
1052                    $arrChildren[] = $arrData[$i][$id_name];
1053                }
1054            }
1055        }
1056        return $arrChildren;
1057    }
1058
1059    /**
1060     * 所属するすべての階層の親IDを配列で返す.
1061     *
1062     * @param SC_Query $objQuery SC_Query インスタンス
1063     * @param string $table テーブル名
1064     * @param string $pid_name 親ID名
1065     * @param string $id_name ID名
1066     * @param integer $id ID
1067     * @return array 親IDの配列
1068     */
1069    function sfGetParents($objQuery, $table, $pid_name, $id_name, $id) {
1070        $arrRet = $this->sfGetParentsArray($table, $pid_name, $id_name, $id);
1071        // 配列の先頭1つを削除する。
1072        array_shift($arrRet);
1073        return $arrRet;
1074    }
1075
1076    /**
1077     * 階層構造のテーブルから親ID配列を取得する.
1078     *
1079     * @param string $table テーブル名
1080     * @param string $pid_name 親ID名
1081     * @param string $id_name ID名
1082     * @param integer $id ID
1083     * @return array 親IDの配列
1084     */
1085    function sfGetParentsArray($table, $pid_name, $id_name, $id) {
1086        $objQuery = new SC_Query();
1087        $col = $pid_name . "," . $id_name;
1088        $arrData = $objQuery->select($col, $table);
1089
1090        $arrParents = array();
1091        $arrParents[] = $id;
1092        $child = $id;
1093
1094        $ret = SC_Utils::sfGetParentsArraySub($arrData, $pid_name, $id_name, $child);
1095
1096        while($ret != "") {
1097            $arrParents[] = $ret;
1098            $ret = SC_Utils::sfGetParentsArraySub($arrData, $pid_name, $id_name, $ret);
1099        }
1100
1101        $arrParents = array_reverse($arrParents);
1102
1103        return $arrParents;
1104    }
1105
1106    /**
1107     * カテゴリから商品を検索する場合のWHERE文と値を返す.
1108     *
1109     * @param integer $category_id カテゴリID
1110     * @return array 商品を検索する場合の配列
1111     */
1112    function sfGetCatWhere($category_id) {
1113        // 子カテゴリIDの取得
1114        $arrRet = $this->sfGetChildsID("dtb_category", "parent_category_id", "category_id", $category_id);
1115        $tmp_where = "";
1116        foreach ($arrRet as $val) {
1117            if($tmp_where == "") {
1118                $tmp_where.= " category_id IN ( ?";
1119            } else {
1120                $tmp_where.= ",? ";
1121            }
1122            $arrval[] = $val;
1123        }
1124        $tmp_where.= " ) ";
1125        return array($tmp_where, $arrval);
1126    }
1127
1128    /**
1129     * 受注一時テーブルから情報を取得する.
1130     *
1131     * @param integer $order_temp_id 受注一時ID
1132     * @return array 受注一時情報の配列
1133     */
1134    function sfGetOrderTemp($order_temp_id) {
1135        $objQuery = new SC_Query();
1136        $where = "order_temp_id = ?";
1137        $arrRet = $objQuery->select("*", "dtb_order_temp", $where, array($order_temp_id));
1138        return $arrRet[0];
1139    }
1140
1141    /**
1142     * SELECTボックス用リストを作成する.
1143     *
1144     * @param string $table テーブル名
1145     * @param string $keyname プライマリーキーのカラム名
1146     * @param string $valname データ内容のカラム名
1147     * @return array SELECT ボックス用リストの配列
1148     */
1149    function sfGetIDValueList($table, $keyname, $valname) {
1150        $objQuery = new SC_Query();
1151        $col = "$keyname, $valname";
1152        $objQuery->setwhere("del_flg = 0");
1153        $objQuery->setorder("rank DESC");
1154        $arrList = $objQuery->select($col, $table);
1155        $count = count($arrList);
1156        for($cnt = 0; $cnt < $count; $cnt++) {
1157            $key = $arrList[$cnt][$keyname];
1158            $val = $arrList[$cnt][$valname];
1159            $arrRet[$key] = $val;
1160        }
1161        return $arrRet;
1162    }
1163
1164    /**
1165     * ランキングを上げる.
1166     *
1167     * @param string $table テーブル名
1168     * @param string $colname カラム名
1169     * @param string|integer $id テーブルのキー
1170     * @param string $andwhere SQL の AND 条件である WHERE 句
1171     * @return void
1172     */
1173    function sfRankUp($table, $colname, $id, $andwhere = "") {
1174        $objQuery = new SC_Query();
1175        $objQuery->begin();
1176        $where = "$colname = ?";
1177        if($andwhere != "") {
1178            $where.= " AND $andwhere";
1179        }
1180        // 対象項目のランクを取得
1181        $rank = $objQuery->get($table, "rank", $where, array($id));
1182        // ランクの最大値を取得
1183        $maxrank = $objQuery->max($table, "rank", $andwhere);
1184        // ランクが最大値よりも小さい場合に実行する。
1185        if($rank < $maxrank) {
1186            // ランクが一つ上のIDを取得する。
1187            $where = "rank = ?";
1188            if($andwhere != "") {
1189                $where.= " AND $andwhere";
1190            }
1191            $uprank = $rank + 1;
1192            $up_id = $objQuery->get($table, $colname, $where, array($uprank));
1193            // ランク入れ替えの実行
1194            $sqlup = "UPDATE $table SET rank = ? WHERE $colname = ?";
1195            if($andwhere != "") {
1196                $sqlup.= " AND $andwhere";
1197            }
1198            $objQuery->exec($sqlup, array($rank + 1, $id));
1199            $objQuery->exec($sqlup, array($rank, $up_id));
1200        }
1201        $objQuery->commit();
1202    }
1203
1204    /**
1205     * ランキングを下げる.
1206     *
1207     * @param string $table テーブル名
1208     * @param string $colname カラム名
1209     * @param string|integer $id テーブルのキー
1210     * @param string $andwhere SQL の AND 条件である WHERE 句
1211     * @return void
1212     */
1213    function sfRankDown($table, $colname, $id, $andwhere = "") {
1214        $objQuery = new SC_Query();
1215        $objQuery->begin();
1216        $where = "$colname = ?";
1217        if($andwhere != "") {
1218            $where.= " AND $andwhere";
1219        }
1220        // 対象項目のランクを取得
1221        $rank = $objQuery->get($table, "rank", $where, array($id));
1222
1223        // ランクが1(最小値)よりも大きい場合に実行する。
1224        if($rank > 1) {
1225            // ランクが一つ下のIDを取得する。
1226            $where = "rank = ?";
1227            if($andwhere != "") {
1228                $where.= " AND $andwhere";
1229            }
1230            $downrank = $rank - 1;
1231            $down_id = $objQuery->get($table, $colname, $where, array($downrank));
1232            // ランク入れ替えの実行
1233            $sqlup = "UPDATE $table SET rank = ? WHERE $colname = ?";
1234            if($andwhere != "") {
1235                $sqlup.= " AND $andwhere";
1236            }
1237            $objQuery->exec($sqlup, array($rank - 1, $id));
1238            $objQuery->exec($sqlup, array($rank, $down_id));
1239        }
1240        $objQuery->commit();
1241    }
1242
1243    /**
1244     * 指定順位へ移動する.
1245     *
1246     * @param string $tableName テーブル名
1247     * @param string $keyIdColumn キーを保持するカラム名
1248     * @param string|integer $keyId キーの値
1249     * @param integer $pos 指定順位
1250     * @param string $where SQL の AND 条件である WHERE 句
1251     * @return void
1252     */
1253    function sfMoveRank($tableName, $keyIdColumn, $keyId, $pos, $where = "") {
1254        $objQuery = new SC_Query();
1255        $objQuery->begin();
1256
1257        // 自身のランクを取得する
1258        $rank = $objQuery->get($tableName, "rank", "$keyIdColumn = ?", array($keyId));
1259
1260        $max = $objQuery->max($tableName, "rank", $where);
1261
1262        // 値の調整(逆順)
1263        if($pos > $max) {
1264            $position = 1;
1265        } else if($pos < 1) {
1266            $position = $max;
1267        } else {
1268            $position = $max - $pos + 1;
1269        }
1270
1271        //入れ替え先の順位が入れ換え元の順位より大きい場合
1272        if( $position > $rank ) $term = "rank - 1";
1273
1274        //入れ替え先の順位が入れ換え元の順位より小さい場合
1275        if( $position < $rank ) $term = "rank + 1";
1276
1277        // XXX 入れ替え先の順位が入れ替え元の順位と同じ場合
1278        if (!isset($term)) $term = "rank";
1279
1280        // 指定した順位の商品から移動させる商品までのrankを1つずらす
1281        $sql = "UPDATE $tableName SET rank = $term WHERE rank BETWEEN ? AND ?";
1282        if($where != "") {
1283            $sql.= " AND $where";
1284        }
1285
1286        if( $position > $rank ) $objQuery->exec( $sql, array( $rank + 1, $position ));
1287        if( $position < $rank ) $objQuery->exec( $sql, array( $position, $rank - 1 ));
1288
1289        // 指定した順位へrankを書き換える。
1290        $sql  = "UPDATE $tableName SET rank = ? WHERE $keyIdColumn = ? ";
1291        if($where != "") {
1292            $sql.= " AND $where";
1293        }
1294
1295        $objQuery->exec( $sql, array( $position, $keyId ) );
1296        $objQuery->commit();
1297    }
1298
1299    /**
1300     * ランクを含むレコードを削除する.
1301     *
1302     * レコードごと削除する場合は、$deleteをtrueにする
1303     *
1304     * @param string $table テーブル名
1305     * @param string $colname カラム名
1306     * @param string|integer $id テーブルのキー
1307     * @param string $andwhere SQL の AND 条件である WHERE 句
1308     * @param bool $delete レコードごと削除する場合 true,
1309     *                     レコードごと削除しない場合 false
1310     * @return void
1311     */
1312    function sfDeleteRankRecord($table, $colname, $id, $andwhere = "",
1313                                $delete = false) {
1314        $objQuery = new SC_Query();
1315        $objQuery->begin();
1316        // 削除レコードのランクを取得する。
1317        $where = "$colname = ?";
1318        if($andwhere != "") {
1319            $where.= " AND $andwhere";
1320        }
1321        $rank = $objQuery->get($table, "rank", $where, array($id));
1322
1323        if(!$delete) {
1324            // ランクを最下位にする、DELフラグON
1325            $sqlup = "UPDATE $table SET rank = 0, del_flg = 1 ";
1326            $sqlup.= "WHERE $colname = ?";
1327            // UPDATEの実行
1328            $objQuery->exec($sqlup, array($id));
1329        } else {
1330            $objQuery->delete($table, "$colname = ?", array($id));
1331        }
1332
1333        // 追加レコードのランクより上のレコードを一つずらす。
1334        $where = "rank > ?";
1335        if($andwhere != "") {
1336            $where.= " AND $andwhere";
1337        }
1338        $sqlup = "UPDATE $table SET rank = (rank - 1) WHERE $where";
1339        $objQuery->exec($sqlup, array($rank));
1340        $objQuery->commit();
1341    }
1342
1343    /**
1344     * 親IDの配列を元に特定のカラムを取得する.
1345     *
1346     * @param SC_Query $objQuery SC_Query インスタンス
1347     * @param string $table テーブル名
1348     * @param string $id_name ID名
1349     * @param string $col_name カラム名
1350     * @param array $arrId IDの配列
1351     * @return array 特定のカラムの配列
1352     */
1353    function sfGetParentsCol($objQuery, $table, $id_name, $col_name, $arrId ) {
1354        $col = $col_name;
1355        $len = count($arrId);
1356        $where = "";
1357
1358        for($cnt = 0; $cnt < $len; $cnt++) {
1359            if($where == "") {
1360                $where = "$id_name = ?";
1361            } else {
1362                $where.= " OR $id_name = ?";
1363            }
1364        }
1365
1366        $objQuery->setorder("level");
1367        $arrRet = $objQuery->select($col, $table, $where, $arrId);
1368        return $arrRet;
1369    }
1370
1371    /**
1372     * カテゴリ変更時の移動処理を行う.
1373     *
1374     * @param SC_Query $objQuery SC_Query インスタンス
1375     * @param string $table テーブル名
1376     * @param string $id_name ID名
1377     * @param string $cat_name カテゴリ名
1378     * @param integer $old_catid 旧カテゴリID
1379     * @param integer $new_catid 新カテゴリID
1380     * @param integer $id ID
1381     * @return void
1382     */
1383    function sfMoveCatRank($objQuery, $table, $id_name, $cat_name, $old_catid, $new_catid, $id) {
1384        if ($old_catid == $new_catid) {
1385            return;
1386        }
1387        // 旧カテゴリでのランク削除処理
1388        // 移動レコードのランクを取得する。
1389        $where = "$id_name = ?";
1390        $rank = $objQuery->get($table, "rank", $where, array($id));
1391        // 削除レコードのランクより上のレコードを一つ下にずらす。
1392        $where = "rank > ? AND $cat_name = ?";
1393        $sqlup = "UPDATE $table SET rank = (rank - 1) WHERE $where";
1394        $objQuery->exec($sqlup, array($rank, $old_catid));
1395        // 新カテゴリでの登録処理
1396        // 新カテゴリの最大ランクを取得する。
1397        $max_rank = $objQuery->max($table, "rank", "$cat_name = ?", array($new_catid)) + 1;
1398        $where = "$id_name = ?";
1399        $sqlup = "UPDATE $table SET rank = ? WHERE $where";
1400        $objQuery->exec($sqlup, array($max_rank, $id));
1401    }
1402
1403    /**
1404     * 配送時間を取得する.
1405     *
1406     * @param integer $payment_id 支払い方法ID
1407     * @return array 配送時間の配列
1408     */
1409    function sfGetDelivTime($payment_id = "") {
1410        $objQuery = new SC_Query();
1411
1412        $deliv_id = "";
1413        $arrRet = array();
1414
1415        if($payment_id != "") {
1416            $where = "del_flg = 0 AND payment_id = ?";
1417            $arrRet = $objQuery->select("deliv_id", "dtb_payment", $where, array($payment_id));
1418            $deliv_id = $arrRet[0]['deliv_id'];
1419        }
1420
1421        if($deliv_id != "") {
1422            $objQuery->setorder("time_id");
1423            $where = "deliv_id = ?";
1424            $arrRet= $objQuery->select("time_id, deliv_time", "dtb_delivtime", $where, array($deliv_id));
1425        }
1426
1427        return $arrRet;
1428    }
1429
1430    /**
1431     * 都道府県、支払い方法から配送料金を取得する.
1432     *
1433     * @param integer $pref 都道府県ID
1434     * @param integer $payment_id 支払い方法ID
1435     * @return string 指定の都道府県, 支払い方法の配送料金
1436     */
1437    function sfGetDelivFee($arrData) {
1438        $pref = $arrData['deliv_pref'];
1439        $payment_id = isset($arrData['payment_id']) ? $arrData['payment_id'] : "";
1440
1441        $objQuery = new SC_Query();
1442
1443        $deliv_id = "";
1444
1445        // 支払い方法が指定されている場合は、対応した配送業者を取得する
1446        if($payment_id != "") {
1447            $where = "del_flg = 0 AND payment_id = ?";
1448            $arrRet = $objQuery->select("deliv_id", "dtb_payment", $where, array($payment_id));
1449            $deliv_id = $arrRet[0]['deliv_id'];
1450        // 支払い方法が指定されていない場合は、先頭の配送業者を取得する
1451        } else {
1452            $where = "del_flg = 0";
1453            $objQuery->setOrder("rank DESC");
1454            $objQuery->setLimitOffset(1);
1455            $arrRet = $objQuery->select("deliv_id", "dtb_deliv", $where);
1456            $deliv_id = $arrRet[0]['deliv_id'];
1457        }
1458
1459        // 配送業者から配送料を取得
1460        if($deliv_id != "") {
1461
1462            // 都道府県が指定されていない場合は、東京都の番号を指定しておく
1463            if($pref == "") {
1464                $pref = 13;
1465            }
1466
1467            $objQuery = new SC_Query();
1468            $where = "deliv_id = ? AND pref = ?";
1469            $arrRet= $objQuery->select("fee", "dtb_delivfee", $where, array($deliv_id, $pref));
1470        }
1471        return $arrRet[0]['fee'];
1472    }
1473
1474    /**
1475     * 集計情報を元に最終計算を行う.
1476     *
1477     * @param array $arrData 各種情報
1478     * @param LC_Page $objPage LC_Page インスタンス
1479     * @param SC_CartSession $objCartSess SC_CartSession インスタンス
1480     * @param array $arrInfo 店舗情報の配列
1481     * @param SC_Customer $objCustomer SC_Customer インスタンス
1482     * @return array 最終計算後の配列
1483     */
1484    function sfTotalConfirm($arrData, &$objPage, &$objCartSess, $arrInfo, $objCustomer = "") {
1485        // 未定義変数を定義
1486        if (!isset($arrData['deliv_pref'])) $arrData['deliv_pref'] = "";
1487        if (!isset($arrData['payment_id'])) $arrData['payment_id'] = "";
1488        if (!isset($arrData['charge'])) $arrData['charge'] = "";
1489        if (!isset($arrData['use_point'])) $arrData['use_point'] = "";
1490
1491        // 税金の取得
1492        $arrData['tax'] = $objPage->tpl_total_tax;
1493        // 小計の取得
1494        $arrData['subtotal'] = $objPage->tpl_total_pretax;
1495
1496        // 合計送料の取得
1497        $arrData['deliv_fee'] = 0;
1498
1499        // 商品ごとの送料が有効の場合
1500        if (OPTION_PRODUCT_DELIV_FEE == 1) {
1501            // 全商品の合計送料を加算する
1502            $this->lfAddAllProductsDelivFee($arrData, $objPage, $objCartSess);
1503        }
1504
1505        // 配送業者の送料が有効の場合
1506        if (OPTION_DELIV_FEE == 1) {
1507            // 都道府県、支払い方法から配送料金を加算する
1508            $this->lfAddDelivFee($arrData);
1509        }
1510
1511        // 送料無料の購入数が設定されている場合
1512        if (DELIV_FREE_AMOUNT > 0) {
1513            // 商品の合計数量
1514            $total_quantity = $objCartSess->getTotalQuantity(true);
1515           
1516            if($total_quantity >= DELIV_FREE_AMOUNT) {
1517                $arrData['deliv_fee'] = 0;
1518            }
1519        }
1520
1521        // 送料無料条件が設定されている場合
1522        if($arrInfo['free_rule'] > 0) {
1523            // 小計が無料条件を超えている場合
1524            if($arrData['subtotal'] >= $arrInfo['free_rule']) {
1525                $arrData['deliv_fee'] = 0;
1526            }
1527        }
1528
1529        // 合計の計算
1530        $arrData['total'] = $objPage->tpl_total_pretax; // 商品合計
1531        $arrData['total']+= $arrData['deliv_fee'];      // 送料
1532        $arrData['total']+= $arrData['charge'];         // 手数料
1533        // お支払い合計
1534        $arrData['payment_total'] = $arrData['total'] - ($arrData['use_point'] * POINT_VALUE);
1535        // 加算ポイントの計算
1536        $arrData['add_point'] = SC_Utils::sfGetAddPoint($objPage->tpl_total_point, $arrData['use_point'], $arrInfo);
1537           
1538            if($objCustomer != "") {
1539                // 誕生日月であった場合
1540                if($objCustomer->isBirthMonth()) {
1541                    $arrData['birth_point'] = BIRTH_MONTH_POINT;
1542                    $arrData['add_point'] += $arrData['birth_point'];
1543            }
1544        }
1545
1546        if($arrData['add_point'] < 0) {
1547            $arrData['add_point'] = 0;
1548        }
1549        return $arrData;
1550    }
1551
1552    /**
1553     * レコードの存在チェックを行う.
1554     *
1555     * @param string $table テーブル名
1556     * @param string $col カラム名
1557     * @param array $arrval 要素の配列
1558     * @param array $addwhere SQL の AND 条件である WHERE 句
1559     * @return bool レコードが存在する場合 true
1560     */
1561    function sfIsRecord($table, $col, $arrval, $addwhere = "") {
1562        $objQuery = new SC_Query();
1563        $arrCol = split("[, ]", $col);
1564
1565        $where = "del_flg = 0";
1566
1567        if($addwhere != "") {
1568            $where.= " AND $addwhere";
1569        }
1570
1571        foreach($arrCol as $val) {
1572            if($val != "") {
1573                if($where == "") {
1574                    $where = "$val = ?";
1575                } else {
1576                    $where.= " AND $val = ?";
1577                }
1578            }
1579        }
1580        $ret = $objQuery->get($table, $col, $where, $arrval);
1581
1582        if($ret != "") {
1583            return true;
1584        }
1585        return false;
1586    }
1587
1588    /**
1589     * メーカー商品数数の登録を行う.
1590     *
1591     * @param SC_Query $objQuery SC_Query インスタンス
1592     * @return void
1593     */
1594    function sfMaker_Count($objQuery){
1595        $sql = "";
1596
1597        //テーブル内容の削除
1598        $objQuery->query("DELETE FROM dtb_maker_count");
1599
1600        //各メーカーの商品数を数えて格納
1601        $sql = " INSERT INTO dtb_maker_count(maker_id, product_count, create_date) ";
1602        $sql .= " SELECT T1.maker_id, count(T2.maker_id), now() ";
1603        $sql .= " FROM dtb_maker AS T1 LEFT JOIN dtb_products AS T2";
1604        $sql .= " ON T1.maker_id = T2.maker_id ";
1605        $sql .= " WHERE T2.del_flg = 0 AND T2.status = 1 ";
1606        $sql .= " GROUP BY T1.maker_id, T2.maker_id ";
1607        $objQuery->query($sql);
1608    }
1609
1610    /**
1611     * 選択中の商品のメーカーを取得する.
1612     *
1613     * @param integer $product_id プロダクトID
1614     * @param integer $maker_id メーカーID
1615     * @return array 選択中の商品のメーカーIDの配列
1616     *
1617     */
1618    function sfGetMakerId($product_id, $maker_id = 0, $closed = false) {
1619        if ($closed) {
1620            $status = "";
1621        } else {
1622            $status = "status = 1";
1623        }
1624
1625        if(!$this->g_maker_on) {
1626            $this->g_maker_on = true;
1627            $maker_id = (int) $maker_id;
1628            $product_id = (int) $product_id;
1629            if(SC_Utils_Ex::sfIsInt($maker_id) && $this->sfIsRecord("dtb_maker","maker_id", $maker_id)) {
1630                $this->g_maker_id = array($maker_id);
1631            } else if (SC_Utils_Ex::sfIsInt($product_id) && $this->sfIsRecord("dtb_products","product_id", $product_id, $status)) {
1632                $objQuery = new SC_Query();
1633                $where = "product_id = ?";
1634                $maker_id = $objQuery->getCol("dtb_products", "maker_id", "product_id = ?", array($product_id));
1635                $this->g_maker_id = $maker_id;
1636            } else {
1637                // 不正な場合は、空の配列を返す。
1638                $this->g_maker_id = array();
1639            }
1640        }
1641        return $this->g_maker_id;
1642    }
1643
1644    /**
1645     * メーカーの取得を行う.
1646     *
1647     * $products_check:true商品登録済みのものだけ取得する
1648     *
1649     * @param string $addwhere 追加する WHERE 句
1650     * @param bool $products_check 商品の存在するカテゴリのみ取得する場合 true
1651     * @return array カテゴリツリーの配列
1652     */
1653    function sfGetMakerList($addwhere = "", $products_check = false) {
1654        $objQuery = new SC_Query();
1655        $where = "del_flg = 0";
1656
1657        if($addwhere != "") {
1658            $where.= " AND $addwhere";
1659        }
1660
1661        $objQuery->setoption("ORDER BY rank DESC");
1662
1663        if($products_check) {
1664            $col = "T1.maker_id, name";
1665            $from = "dtb_maker AS T1 LEFT JOIN dtb_maker_count AS T2 ON T1.maker_id = T2.maker_id";
1666            $where .= " AND product_count > 0";
1667        } else {
1668            $col = "maker_id, name";
1669            $from = "dtb_maker";
1670        }
1671
1672        $arrRet = $objQuery->select($col, $from, $where);
1673
1674        $max = count($arrRet);
1675        for($cnt = 0; $cnt < $max; $cnt++) {
1676            $id = $arrRet[$cnt]['maker_id'];
1677            $name = $arrRet[$cnt]['name'];
1678            $arrList[$id].= $name;
1679        }
1680        return $arrList;
1681    }
1682
1683    /**
1684     * 全商品の合計送料を加算する
1685     */
1686    function lfAddAllProductsDelivFee(&$arrData, &$objPage, &$objCartSess) {
1687        $arrData['deliv_fee'] += $this->lfCalcAllProductsDelivFee($arrData, $objCartSess);
1688    }
1689
1690    /**
1691     * 全商品の合計送料を計算する
1692     */
1693    function lfCalcAllProductsDelivFee(&$arrData, &$objCartSess) {
1694        $objQuery = new SC_Query();
1695        $deliv_fee_total = 0;
1696        $max = $objCartSess->getMax();
1697        for ($i = 0; $i <= $max; $i++) {
1698            // 商品送料
1699            $deliv_fee = $objQuery->getOne('SELECT deliv_fee FROM dtb_products WHERE product_id = ?', array($_SESSION[$objCartSess->key][$i]['id'][0]));
1700            // 数量
1701            $quantity = $_SESSION[$objCartSess->key][$i]['quantity'];
1702            // 累積
1703            $deliv_fee_total += $deliv_fee * $quantity;
1704        }
1705        return $deliv_fee_total;
1706    }
1707
1708    /**
1709     * 都道府県、支払い方法から配送料金を加算する.
1710     *
1711     * @param array $arrData
1712     */
1713    function lfAddDelivFee(&$arrData) {
1714        $arrData['deliv_fee'] += $this->sfGetDelivFee($arrRet);
1715    }
1716
1717    /**
1718     * 受注の名称列を更新する
1719     *
1720     * @param integer $order_id 更新対象の注文番号
1721     * @param boolean $temp_table 更新対象は「受注_Temp」か
1722     */
1723    function sfUpdateOrderNameCol($order_id, $temp_table = false) {
1724        $objQuery = new SC_Query();
1725       
1726        if ($temp_table) {
1727            $table = 'dtb_order_temp';
1728            $sql_where = 'WHERE order_temp_id = ?';
1729        } else {
1730            $table = 'dtb_order';
1731            $sql_where = 'WHERE order_id = ?';
1732        }
1733       
1734        $sql = <<< __EOS__
1735            UPDATE
1736                $table tgt
1737            SET
1738                 payment_method = (SELECT payment_method FROM dtb_payment WHERE payment_id = tgt.payment_id)
1739                ,deliv_time = (SELECT deliv_time FROM dtb_delivtime WHERE time_id = tgt.deliv_time_id AND deliv_id = tgt.deliv_id)
1740            $sql_where
1741__EOS__;
1742       
1743        $objQuery->query($sql, array($order_id));
1744    }
1745}
1746?>
Note: See TracBrowser for help on using the repository browser.