source: branches/version-2/data/class/pages/admin/products/LC_Page_Admin_Products_Category.php @ 18432

Revision 18432, 15.7 KB checked in by kajiwara, 14 years ago (diff)

EC-CUBE Ver2.4.2 分コミット。詳細はこちら( http://www.ec-cube.net/release/detail.php?release_id=207

  • 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// {{{ requires
25require_once(CLASS_PATH . "pages/LC_Page.php");
26
27/**
28 * カテゴリ管理 のページクラス.
29 *
30 * @package Page
31 * @author LOCKON CO.,LTD.
32 * @version $Id$
33 */
34class LC_Page_Admin_Products_Category extends LC_Page {
35
36    // {{{ properties
37
38    /** フォームパラメータ */
39    var $objFormParam;
40
41    // }}}
42    // {{{ functions
43
44    /**
45     * Page を初期化する.
46     *
47     * @return void
48     */
49    function init() {
50        parent::init();
51        $this->tpl_subtitle = 'カテゴリー登録';
52        $this->tpl_mainpage = 'products/category.tpl';
53        $this->tpl_subnavi = 'products/subnavi.tpl';
54        $this->tpl_mainno = 'products';
55        $this->tpl_subno = 'category';
56        $this->tpl_onload = " fnSetFocus('category_name'); ";
57    }
58
59    /**
60     * Page のプロセス.
61     *
62     * @return void
63     */
64    function process() {
65        $conn = new SC_DBConn();
66        $objView = new SC_AdminView();
67        $objSess = new SC_Session();
68        $objDb = new SC_Helper_DB_Ex();
69
70        // 認証可否の判定
71        SC_Utils_Ex::sfIsSuccess($objSess);
72
73        // パラメータ管理クラス
74        $this->objFormParam = new SC_FormParam();
75        // パラメータ情報の初期化
76        $this->lfInitParam();
77        // POST値の取得
78        $this->objFormParam->setParam($_POST);
79
80        // 通常時は親カテゴリを0に設定する。
81        $this->arrForm['parent_category_id'] =
82            isset($_POST['parent_category_id']) ? $_POST['parent_category_id'] : "";
83
84        if (!isset($_POST['mode'])) $_POST['mode'] = "";
85
86        switch($_POST['mode']) {
87        case 'edit':
88            $this->objFormParam->convParam();
89            $arrRet =  $this->objFormParam->getHashArray();
90            $this->arrErr = $this->lfCheckError($arrRet);
91
92            if(count($this->arrErr) == 0) {
93                if($_POST['category_id'] == "") {
94                    $objQuery = new SC_Query();
95                    $count = $objQuery->count("dtb_category");
96                    if($count < CATEGORY_MAX) {
97                        $this->lfInsertCat($_POST['parent_category_id']);
98                    } else {
99                        print("カテゴリの登録最大数を超えました。");
100                    }
101                } else {
102                    $this->lfUpdateCat($_POST['category_id']);
103                }
104            } else {
105                $this->arrForm = array_merge($this->arrForm, $this->objFormParam->getHashArray());
106                $this->arrForm['category_id'] = $_POST['category_id'];
107            }
108            break;
109        case 'pre_edit':
110            // 編集項目のカテゴリ名をDBより取得する。
111            $oquery = new SC_Query();
112            $where = "category_id = ?";
113            $cat_name = $oquery->get("dtb_category", "category_name", $where, array($_POST['category_id']));
114            // 入力項目にカテゴリ名を入力する。
115            $this->arrForm['category_name'] = $cat_name;
116            // POSTデータを引き継ぐ
117            $this->arrForm['category_id'] = $_POST['category_id'];
118            break;
119        case 'delete':
120            $objQuery = new SC_Query();
121            // 子カテゴリのチェック
122            $where = "parent_category_id = ? AND del_flg = 0";
123            $count = $objQuery->count("dtb_category", $where, array($_POST['category_id']));
124            if($count != 0) {
125                $this->arrErr['category_name'] = "※ 子カテゴリが存在するため削除できません。<br>";
126            }
127            // 登録商品のチェック
128            $table = "dtb_product_categories AS T1 LEFT JOIN dtb_products AS T2 ON T1.product_id = T2.product_id";
129            $where = "T1.category_id = ? AND T2.del_flg = 0";
130            $count = $objQuery->count($table, $where, array($_POST['category_id']));
131            if($count != 0) {
132                $this->arrErr['category_name'] = "※ カテゴリ内に商品が存在するため削除できません。<br>";
133            }
134
135            if(!isset($this->arrErr['category_name'])) {
136                // ランク付きレコードの削除(※処理負荷を考慮してレコードごと削除する。)
137                $objDb->sfDeleteRankRecord("dtb_category", "category_id", $_POST['category_id'], "", true);
138            }
139            break;
140        case 'up':
141            $objQuery = new SC_Query();
142            $objQuery->begin();
143            $up_id = $this->lfGetUpRankID($objQuery, "dtb_category", "parent_category_id", "category_id", $_POST['category_id']);
144            if($up_id != "") {
145                // 上のグループのrankから減算する数
146                $my_count = $this->lfCountChilds($objQuery, "dtb_category", "parent_category_id", "category_id", $_POST['category_id']);
147                // 自分のグループのrankに加算する数
148                $up_count = $this->lfCountChilds($objQuery, "dtb_category", "parent_category_id", "category_id", $up_id);
149                if($my_count > 0 && $up_count > 0) {
150                    // 自分のグループに加算
151                    $this->lfUpRankChilds($objQuery, "dtb_category", "parent_category_id", "category_id", $_POST['category_id'], $up_count);
152                    // 上のグループから減算
153                    $this->lfDownRankChilds($objQuery, "dtb_category", "parent_category_id", "category_id", $up_id, $my_count);
154                }
155            }
156            $objQuery->commit();
157            break;
158        case 'down':
159            $objQuery = new SC_Query();
160            $objQuery->begin();
161            $down_id = $this->lfGetDownRankID($objQuery, "dtb_category", "parent_category_id", "category_id", $_POST['category_id']);
162            if($down_id != "") {
163                // 下のグループのrankに加算する数
164                $my_count = $this->lfCountChilds($objQuery, "dtb_category", "parent_category_id", "category_id", $_POST['category_id']);
165                // 自分のグループのrankから減算する数
166                $down_count = $this->lfCountChilds($objQuery, "dtb_category", "parent_category_id", "category_id", $down_id);
167                if($my_count > 0 && $down_count > 0) {
168                    // 自分のグループから減算
169                    $this->lfUpRankChilds($objQuery, "dtb_category", "parent_category_id", "category_id", $down_id, $my_count);
170                    // 下のグループに加算
171                    $this->lfDownRankChilds($objQuery, "dtb_category", "parent_category_id", "category_id", $_POST['category_id'], $down_count);
172                }
173            }
174            $objQuery->commit();
175            break;
176        case 'tree':
177            break;
178        case 'csv':
179            require_once(CLASS_EX_PATH . "helper_extends/SC_Helper_CSV_Ex.php");
180
181            $objCSV = new SC_Helper_CSV_Ex();
182            // オプションの指定
183            $option = "ORDER BY rank DESC";
184            // CSV出力タイトル行の作成
185            $arrOutput = SC_Utils_Ex::sfSwapArray($objCSV->sfgetCsvOutput(5, " WHERE csv_id = 5 AND status = 1"));
186
187            if (count($arrOutput) <= 0) break;
188
189            $arrOutputCols = $arrOutput['col'];
190            $arrOutputTitle = $arrOutput['disp_name'];
191
192            $head = SC_Utils_Ex::sfGetCSVList($arrOutputTitle);
193
194            $where = "del_flg = 0";
195            $arrval = array();
196            $data = $objCSV->lfGetCategoryCSV($where, $option, $arrval, $arrOutputCols);
197
198            // CSVを送信する。
199            SC_Utils_Ex::sfCSVDownload($head.$data, 'category');
200            exit;
201            break;
202        default:
203            $this->arrForm['parent_category_id'] = 0;
204            break;
205        }
206
207        $this->arrList = $this->lfGetCat($this->arrForm['parent_category_id']);
208        $this->arrTree = $objDb->sfGetCatTree($this->arrForm['parent_category_id']);
209
210        $objView->assignobj($this);
211        $objView->display(MAIN_FRAME);
212    }
213
214    /**
215     * デストラクタ.
216     *
217     * @return void
218     */
219    function destroy() {
220        parent::destroy();
221    }
222
223
224
225    // カテゴリの新規追加
226    function lfInsertCat($parent_category_id) {
227
228        $objQuery = new SC_Query();
229        $objQuery->begin(); // トランザクションの開始
230
231
232        if($parent_category_id == 0) {
233            // ROOT階層で最大のランクを取得する。
234            $where = "parent_category_id = ?";
235            $rank = $objQuery->max("dtb_category", "rank", $where, array($parent_category_id)) + 1;
236        } else {
237            // 親のランクを自分のランクとする。
238            $where = "category_id = ?";
239            $rank = $objQuery->get("dtb_category", "rank", $where, array($parent_category_id));
240            // 追加レコードのランク以上のレコードを一つあげる。
241            $sqlup = "UPDATE dtb_category SET rank = (rank + 1) WHERE rank >= ?";
242            $objQuery->exec($sqlup, array($rank));
243        }
244
245        $where = "category_id = ?";
246        // 自分のレベルを取得する(親のレベル + 1)
247        $level = $objQuery->get("dtb_category", "level", $where, array($parent_category_id)) + 1;
248
249        // 入力データを渡す。
250        $sqlval = $this->objFormParam->getHashArray();
251        $sqlval['create_date'] = "Now()";
252        $sqlval['update_date'] = "Now()";
253        $sqlval['creator_id'] = $_SESSION['member_id'];
254        $sqlval['parent_category_id'] = $parent_category_id;
255        $sqlval['rank'] = $rank;
256        $sqlval['level'] = $level;
257
258        // INSERTの実行
259        $objQuery->insert("dtb_category", $sqlval);
260
261        $objQuery->commit();    // トランザクションの終了
262    }
263
264    // カテゴリの編集
265    function lfUpdateCat($category_id) {
266        $objQuery = new SC_Query();
267        // 入力データを渡す。
268        $sqlval = $this->objFormParam->getHashArray();
269        $sqlval['update_date'] = "Now()";
270        $where = "category_id = ?";
271        $objQuery->update("dtb_category", $sqlval, $where, array($category_id));
272    }
273
274    // カテゴリの取得
275    function lfGetCat($parent_category_id) {
276        $objQuery = new SC_Query();
277
278        if($parent_category_id == "") {
279            $parent_category_id = '0';
280        }
281
282        $col = "category_id, category_name, level, rank";
283        $where = "del_flg = 0 AND parent_category_id = ?";
284        $objQuery->setoption("ORDER BY rank DESC");
285        $arrRet = $objQuery->select($col, "dtb_category", $where, array($parent_category_id));
286        return $arrRet;
287    }
288
289    /* パラメータ情報の初期化 */
290    function lfInitParam() {
291        $this->objFormParam->addParam("カテゴリ名", "category_name", STEXT_LEN, "KVa", array("EXIST_CHECK","SPTAB_CHECK","MAX_LENGTH_CHECK"));
292    }
293
294    /* 入力内容のチェック */
295    function lfCheckError($array) {
296
297        $objErr = new SC_CheckError($array);
298        $objErr->arrErr = $this->objFormParam->checkError();
299
300        // 階層チェック
301        if(!isset($objErr->arrErr['category_name'])) {
302            $objQuery = new SC_Query();
303            $level = $objQuery->get("dtb_category", "level", "category_id = ?", array($_POST['parent_category_id']));
304
305            if($level >= LEVEL_MAX) {
306                $objErr->arrErr['category_name'] = "※ ".LEVEL_MAX."階層以上の登録はできません。<br>";
307            }
308        }
309
310        if (!isset($_POST['category_id'])) $_POST['category_id'] = "";
311
312        //
313
314        // 重複チェック
315        if(!isset($objErr->arrErr['category_name'])) {
316            $objQuery = new SC_Query();
317            $where = "parent_category_id = ? AND category_name = ?";
318            $arrRet = $objQuery->select("category_id, category_name", "dtb_category", $where, array($_POST['parent_category_id'], $array['category_name']));
319
320            if (empty($arrRet)) {
321                $arrRet = array(array("category_id" => "", "category_name" => ""));
322            }
323
324            // 編集中のレコード以外に同じ名称が存在する場合
325            if ($arrRet[0]['category_id'] != $_POST['category_id']
326                && $arrRet[0]['category_name'] == $_POST['category_name']) {
327                $objErr->arrErr['category_name'] = "※ 既に同じ内容の登録が存在します。<br>";
328            }
329        }
330
331        return $objErr->arrErr;
332    }
333
334
335    // 並びが1つ下のIDを取得する。
336    function lfGetDownRankID($objQuery, $table, $pid_name, $id_name, $id) {
337        // 親IDを取得する。
338        $col = "$pid_name";
339        $where = "$id_name = ?";
340        $pid = $objQuery->get($table, $col, $where, $id);
341        // すべての子を取得する。
342        $col = "$id_name";
343        $where = "del_flg = 0 AND $pid_name = ? ORDER BY rank DESC";
344        $arrRet = $objQuery->select($col, $table, $where, array($pid));
345        $max = count($arrRet);
346        $down_id = "";
347        for($cnt = 0; $cnt < $max; $cnt++) {
348            if($arrRet[$cnt][$id_name] == $id) {
349                $down_id = $arrRet[($cnt + 1)][$id_name];
350                break;
351            }
352        }
353        return $down_id;
354    }
355
356    // 並びが1つ上のIDを取得する。
357    function lfGetUpRankID($objQuery, $table, $pid_name, $id_name, $id) {
358        // 親IDを取得する。
359        $col = "$pid_name";
360        $where = "$id_name = ?";
361        $pid = $objQuery->get($table, $col, $where, $id);
362        // すべての子を取得する。
363        $col = "$id_name";
364        $where = "del_flg = 0 AND $pid_name = ? ORDER BY rank DESC";
365        $arrRet = $objQuery->select($col, $table, $where, array($pid));
366        $max = count($arrRet);
367        $up_id = "";
368        for($cnt = 0; $cnt < $max; $cnt++) {
369            if($arrRet[$cnt][$id_name] == $id) {
370                $up_id = $arrRet[($cnt - 1)][$id_name];
371                break;
372            }
373        }
374        return $up_id;
375    }
376
377    function lfCountChilds($objQuery, $table, $pid_name, $id_name, $id) {
378        $objDb = new SC_Helper_DB_Ex();
379        // 子ID一覧を取得
380        $arrRet = $objDb->sfGetChildrenArray($table, $pid_name, $id_name, $id);
381        return count($arrRet);
382    }
383
384    function lfUpRankChilds($objQuery, $table, $pid_name, $id_name, $id, $count) {
385        $objDb = new SC_Helper_DB_Ex();
386        // 子ID一覧を取得
387        $arrRet = $objDb->sfGetChildrenArray($table, $pid_name, $id_name, $id);
388        $line = SC_Utils_Ex::sfGetCommaList($arrRet);
389        $sql = "UPDATE $table SET rank = (rank + $count) WHERE $id_name IN ($line) ";
390        $sql.= "AND del_flg = 0";
391        $ret = $objQuery->exec($sql);
392        return $ret;
393    }
394
395    function lfDownRankChilds($objQuery, $table, $pid_name, $id_name, $id, $count) {
396        $objDb = new SC_Helper_DB_Ex();
397        // 子ID一覧を取得
398        $arrRet = $objDb->sfGetChildrenArray($table, $pid_name, $id_name, $id);
399        $line = SC_Utils_Ex::sfGetCommaList($arrRet);
400        $sql = "UPDATE $table SET rank = (rank - $count) WHERE $id_name IN ($line) ";
401        $sql.= "AND del_flg = 0";
402        $ret = $objQuery->exec($sql);
403        return $ret;
404    }
405}
406?>
Note: See TracBrowser for help on using the repository browser.