source: branches/comu-ver2/data/class/pages/admin/products/LC_Page_Admin_Products.php @ 17549

Revision 17549, 18.1 KB checked in by Seasoft, 16 years ago (diff)

・VIEWを改訂。簡素化と高速化を目論む。(従来互換を考慮していますが、影響範囲が大きいので不具合もあるかと思います。また、MySQL v4系は、環境が無いため未テストです。バグレポートをお願いします。)
r17509 の不具合対応。
r17548 の応急処置を正式に対応。
・[検索結果をすべて削除]でエラーが発生する不具合を修正。

  • 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:LC_Page_Admin_Products.php 15532 2007-08-31 14:39:46Z nanasess $
33 */
34class LC_Page_Admin_Products extends LC_Page {
35
36    // }}}
37    // {{{ functions
38
39    /**
40     * Page を初期化する.
41     *
42     * @return void
43     */
44    function init() {
45        parent::init();
46        $this->tpl_mainpage = 'products/index.tpl';
47        $this->tpl_mainno = 'products';
48        $this->tpl_subnavi = 'products/subnavi.tpl';
49        $this->tpl_subno = 'index';
50        $this->tpl_pager = TEMPLATE_DIR . 'admin/pager.tpl';
51        $this->tpl_subtitle = '商品マスタ';
52
53        $masterData = new SC_DB_MasterData_Ex();
54        $this->arrPageMax = $masterData->getMasterData("mtb_page_max");
55        $this->arrDISP = $masterData->getMasterData("mtb_disp");
56        $this->arrSTATUS = $masterData->getMasterData("mtb_status");
57        $this->arrPRODUCTSTATUS_COLOR = $masterData->getMasterData("mtb_product_status_color");
58
59        $this->allowClientCache();
60    }
61
62    /**
63     * Page のプロセス.
64     *
65     * @return void
66     */
67    function process() {
68        $objView = new SC_AdminView();
69        $objDb = new SC_Helper_DB_Ex();
70        $objDate = new SC_Date();
71
72        // 登録・更新検索開始年
73        $objDate->setStartYear(RELEASE_YEAR);
74        $objDate->setEndYear(DATE("Y"));
75        $this->arrStartYear = $objDate->getYear();
76        $this->arrStartMonth = $objDate->getMonth();
77        $this->arrStartDay = $objDate->getDay();
78        // 登録・更新検索終了年
79        $objDate->setStartYear(RELEASE_YEAR);
80        $objDate->setEndYear(DATE("Y"));
81        $this->arrEndYear = $objDate->getYear();
82        $this->arrEndMonth = $objDate->getMonth();
83        $this->arrEndDay = $objDate->getDay();
84
85        // 認証可否の判定
86        $objSess = new SC_Session();
87        SC_Utils_Ex::sfIsSuccess($objSess);
88
89        if (!isset($_POST['mode'])) $_POST['mode'] = "";
90
91        //キャンペーンの編集時
92        if(isset($_POST['campaign_id']) && SC_Utils_Ex::sfIsInt($_POST['campaign_id'])
93                && $_POST['mode'] == "camp_search") {
94            $objQuery = new SC_Query();
95            $search_data = $objQuery->get("dtb_campaign", "search_condition", "campaign_id = ? ", array($_POST['campaign_id']));
96            $arrSearch = unserialize($search_data);
97            foreach ($arrSearch as $key => $val) {
98                $_POST[$key] = $val;
99            }
100        }
101
102        // POST値の引き継ぎ
103        $this->arrForm = $_POST;
104
105        // 検索ワードの引き継ぎ
106        foreach ($_POST as $key => $val) {
107            if (ereg("^search_", $key) || ereg("^campaign_", $key)) {
108                switch($key) {
109                    case 'search_product_flag':
110                    case 'search_status':
111                        $this->arrHidden[$key] = SC_Utils_Ex::sfMergeParamCheckBoxes($val);
112                        if(!is_array($val)) {
113                            $this->arrForm[$key] = split("-", $val);
114                        }
115                        break;
116                    default:
117                        $this->arrHidden[$key] = $val;
118                        break;
119                }
120            }
121        }
122
123        // ページ送り用
124        $this->arrHidden['search_pageno'] = isset($_POST['search_pageno']) ? $_POST['search_pageno'] : "";
125
126        // 商品削除
127        if ($_POST['mode'] == "delete") {
128
129            if($_POST['category_id'] != "") {
130                // ランク付きレコードの削除
131                $where = "category_id = " . SC_Utils_Ex::sfQuoteSmart($_POST['category_id']);
132                $objDb->sfDeleteRankRecord("dtb_products", "product_id", $_POST['product_id'], $where);
133            } else {
134                $objDb->sfDeleteRankRecord("dtb_products", "product_id", $_POST['product_id']);
135            }
136            // 子テーブル(商品規格)の削除
137            $objQuery = new SC_Query();
138            $objQuery->delete("dtb_products_class", "product_id = ?", array($_POST['product_id']));
139
140            // お気に入り商品削除
141            $objQuery->delete("dtb_customer_favorite_products", "product_id = ?", array($_POST['product_id']));
142
143            // 件数カウントバッチ実行
144            $objDb->sfCategory_Count($objQuery);
145            $objDb->sfMaker_Count($objQuery);
146        }
147
148
149        if ($_POST['mode'] == "search" || $_POST['mode'] == "csv"  || $_POST['mode'] == "delete" || $_POST['mode'] == "delete_all" || $_POST['mode'] == "camp_search") {
150            // 入力文字の強制変換
151            $this->lfConvertParam();
152            // エラーチェック
153            $this->arrErr = $this->lfCheckError();
154
155            $where = "del_flg = 0";
156            $view_where = "del_flg = 0";
157
158            // 入力エラーなし
159            if (count($this->arrErr) == 0) {
160
161                $arrval = array();
162                foreach ($this->arrForm as $key => $val) {
163                    $val = SC_Utils_Ex::sfManualEscape($val);
164
165                    if($val == "") {
166                        continue;
167                    }
168
169                    switch ($key) {
170                        case 'search_product_id':   // 商品ID
171                            $where .= " AND product_id = ?";
172                            $view_where .= " AND product_id = ?";
173                            $arrval[] = $val;
174                            break;
175                        case 'search_product_class_name': //規格名称
176                            $where_in = " (SELECT classcategory_id FROM dtb_classcategory WHERE class_id IN (SELECT class_id FROM dtb_class WHERE name LIKE ?)) ";
177                            $where .= " AND product_id IN (SELECT product_id FROM dtb_products_class WHERE classcategory_id1 IN " . $where_in;
178                            $where .= " OR classcategory_id2 IN" . $where_in . ")";
179                            $view_where .= " AND product_id IN (SELECT product_id FROM dtb_products_class WHERE classcategory_id1 IN " . $where_in;
180                            $view_where .= " OR classcategory_id2 IN" . $where_in . ")";
181                            $arrval[] = "%$val%";
182                            $arrval[] = "%$val%";
183                            $view_where = $where;
184                            break;
185                        case 'search_name':         // 商品名
186                            $where .= " AND name LIKE ?";
187                            $view_where .= " AND name LIKE ?";
188                            $arrval[] = "%$val%";
189                            break;
190                        case 'search_category_id':  // カテゴリー
191                            list($tmp_where, $tmp_arrval) = $objDb->sfGetCatWhere($val);
192                            if($tmp_where != "") {
193                                $where.= " AND product_id IN (SELECT product_id FROM dtb_product_categories WHERE " . $tmp_where . ")";
194                                $view_where.= " AND product_id IN (SELECT product_id FROM dtb_product_categories WHERE " . $tmp_where . ")";
195                                $arrval = array_merge((array)$arrval, (array)$tmp_arrval);
196                            }
197                            break;
198                        case 'search_product_code': // 商品コード
199                            $where .= " AND product_id IN (SELECT product_id FROM dtb_products_class WHERE product_code ILIKE ? GROUP BY product_id)";
200                            $view_where .= " AND EXISTS (SELECT product_id FROM dtb_products_class as cls WHERE cls.product_code ILIKE ? AND dtb_products.product_id = cls.product_id GROUP BY cls.product_id )";
201                            $arrval[] = "%$val%";
202                            break;
203                        case 'search_startyear':    // 登録更新日(FROM)
204                            $date = SC_Utils_Ex::sfGetTimestamp($_POST['search_startyear'], $_POST['search_startmonth'], $_POST['search_startday']);
205                            $where.= " AND update_date >= '" . $_POST['search_startyear'] . "/" . $_POST['search_startmonth']. "/" .$_POST['search_startday'] . "'";
206                            $view_where.= " AND update_date >= '" . $_POST['search_startyear'] . "/" . $_POST['search_startmonth']. "/" .$_POST['search_startday'] . "'";
207                            break;
208                        case 'search_endyear':      // 登録更新日(TO)
209                            $date = SC_Utils_Ex::sfGetTimestamp($_POST['search_endyear'], $_POST['search_endmonth'], $_POST['search_endday']);
210                            $date = date('Y/m/d', strtotime($date) + 86400);
211                            $where.= " AND update_date < date('" . $date . "')";
212                            $view_where.= " AND update_date < date('" . $date . "')";
213                            break;
214                        case 'search_product_flag': //種別
215                            global $arrSTATUS;
216                            $search_product_flag = SC_Utils_Ex::sfSearchCheckBoxes($val);
217                            if($search_product_flag != "") {
218                                $where.= " AND product_flag LIKE ?";
219                                $view_where.= " AND product_flag LIKE ?";
220                                $arrval[] = $search_product_flag;
221                            }
222                            break;
223                        case 'search_status':       // ステータス
224                            $tmp_where = "";
225                            foreach ($val as $element){
226                                if ($element != ""){
227                                    if ($tmp_where == ""){
228                                        $tmp_where.="AND (status LIKE ? ";
229                                    }else{
230                                        $tmp_where.="OR status LIKE ? ";
231                                    }
232                                    $arrval[]=$element;
233                                }
234                            }
235                            if ($tmp_where != ""){
236                                $tmp_where.=")";
237                                $where.= " $tmp_where";
238                                $view_where.= " $tmp_where";
239                            }
240                            break;
241                        default:
242                            break;
243                    }
244                }
245
246                $order = "update_date DESC, product_id DESC";
247                $objQuery = new SC_Query();
248
249                switch($_POST['mode']) {
250                case 'csv':
251
252                    require_once(CLASS_EX_PATH . "helper_extends/SC_Helper_CSV_Ex.php");
253
254                    $objCSV = new SC_Helper_CSV_Ex();
255                    // オプションの指定
256                    $option = "ORDER BY $order";
257                    // CSV出力タイトル行の作成
258                    $arrOutput = SC_Utils_Ex::sfSwapArray($objCSV->sfgetCsvOutput(1, " WHERE csv_id = 1 AND status = 1"));
259
260                    if (count($arrOutput) <= 0) break;
261
262                    $arrOutputCols = $arrOutput['col'];
263                    $arrOutputTitle = $arrOutput['disp_name'];
264
265                    $head = SC_Utils_Ex::sfGetCSVList($arrOutputTitle);
266
267                    $data = $objCSV->lfGetProductsCSV($where, $option, $arrval, $arrOutputCols);
268
269                    // CSVを送信する。
270                    SC_Utils_Ex::sfCSVDownload($head.$data);
271                    exit;
272                    break;
273                case 'delete_all':
274                    // 検索結果をすべて削除
275                    $where = "product_id IN (SELECT product_id FROM vw_products_allclass_detail AS alldtl WHERE $where)";
276                    $sqlval['del_flg'] = 1;
277                    $objQuery->update("dtb_products", $sqlval, $where, $arrval);
278                    $objQuery->delete("dtb_customer_favorite_products", $where, $arrval);
279                    break;
280                default:
281                    // 読み込む列とテーブルの指定
282                    $col = "product_id, name, main_list_image, status, product_code_min, product_code_max, price02_min, price02_max, stock_min, stock_max, stock_unlimited_min, stock_unlimited_max, update_date";
283                    $from = "vw_products_allclass_detail AS alldtl ";
284
285                    // 行数の取得
286                    $linemax = $objQuery->count("dtb_products", $view_where, $arrval);
287                    $this->tpl_linemax = $linemax;              // 何件が該当しました。表示用
288
289                    // ページ送りの処理
290                    if(is_numeric($_POST['search_page_max'])) {
291                        $page_max = $_POST['search_page_max'];
292                    } else {
293                        $page_max = SEARCH_PMAX;
294                    }
295
296                    // ページ送りの取得
297                    $objNavi = new SC_PageNavi($this->arrHidden['search_pageno'], $linemax, $page_max, "fnNaviSearchPage", NAVI_PMAX);
298                    $startno = $objNavi->start_row;
299                    $this->arrPagenavi = $objNavi->arrPagenavi;
300
301                    //キャンペーン商品検索時は、全結果の商品IDを変数に格納する
302                    if(isset($_POST['search_mode']) && $_POST['search_mode'] == 'campaign') {
303                        $arrRet = $objQuery->select($col, $from, $where, $arrval);
304                        if(count($arrRet) > 0) {
305                            $arrRet = sfSwapArray($arrRet);
306                            $pid = implode("-", $arrRet['product_id']);
307                            $this->arrHidden['campaign_product_id'] = $pid;
308                        }
309                    }
310
311                    // 取得範囲の指定(開始行番号、行数のセット)
312                    //                    if(DB_TYPE != "mysql") $objQuery->setlimitoffset($page_max, $startno);
313                    $objQuery->setlimitoffset($page_max, $startno);
314                    // 表示順序
315                    $objQuery->setorder($order);
316
317                    // 検索結果の取得
318                    $this->arrProducts = $objQuery->select($col, $from, $where, $arrval);
319                   
320                    // 各商品ごとのカテゴリIDを取得
321                    if (count($this->arrProducts) > 0) {
322                        foreach ($this->arrProducts as $key => $val) {
323                            $this->arrProducts[$key]["categories"] = $objDb->sfGetCategoryId($val["product_id"]);
324                            $objDb->g_category_on = false;
325                        }
326                    }
327                }
328            }
329        }
330
331        // カテゴリの読込
332        $this->arrCatList = $objDb->sfGetCategoryList();
333        $this->arrCatIDName = $this->lfGetIDName($this->arrCatList);
334
335        // 画面の表示
336        $objView->assignobj($this);
337        $objView->display(MAIN_FRAME);
338    }
339
340    /**
341     * デストラクタ.
342     *
343     * @return void
344     */
345    function destroy() {
346        parent::destroy();
347    }
348
349    // 取得文字列の変換
350    function lfConvertParam() {
351        global $objPage;
352        /*
353         *  文字列の変換
354         *  K :  「半角(ハンカク)片仮名」を「全角片仮名」に変換
355         *  C :  「全角ひら仮名」を「全角かた仮名」に変換
356         *  V :  濁点付きの文字を一文字に変換。"K","H"と共に使用します
357         *  n :  「全角」数字を「半角(ハンカク)」に変換
358         */
359        $arrConvList['search_name'] = "KVa";
360        $arrConvList['search_product_code'] = "KVa";
361
362        // 文字変換
363        foreach ($arrConvList as $key => $val) {
364            // POSTされてきた値のみ変換する。
365            if(isset($objPage->arrForm[$key])) {
366                $objPage->arrForm[$key] = mb_convert_kana($objPage->arrForm[$key] ,$val);
367            }
368        }
369    }
370
371    // エラーチェック
372    // 入力エラーチェック
373    function lfCheckError() {
374        $objErr = new SC_CheckError();
375        $objErr->doFunc(array("商品ID", "search_product_id"), array("NUM_CHECK"));
376        $objErr->doFunc(array("開始日", "search_startyear", "search_startmonth", "search_startday"), array("CHECK_DATE"));
377        $objErr->doFunc(array("終了日", "search_endyear", "search_endmonth", "search_endday"), array("CHECK_DATE"));
378        $objErr->doFunc(array("開始日", "終了日", "search_startyear", "search_startmonth", "search_startday", "search_endyear", "search_endmonth", "search_endday"), array("CHECK_SET_TERM"));
379        return $objErr->arrErr;
380    }
381
382    // チェックボックス用WHERE文作成
383    function lfGetCBWhere($key, $max) {
384        $str = "";
385        $find = false;
386        for ($cnt = 1; $cnt <= $max; $cnt++) {
387            if ($_POST[$key . $cnt] == "1") {
388                $str.= "1";
389                $find = true;
390            } else {
391                $str.= "_";
392            }
393        }
394        if (!$find) {
395            $str = "";
396        }
397        return $str;
398    }
399
400    // カテゴリIDをキー、カテゴリ名を値にする配列を返す。
401    function lfGetIDName($arrCatList) {
402        $max = count($arrCatList);
403        for ($cnt = 0; $cnt < $max; $cnt++ ) {
404            $key = isset($arrCatList[$cnt]['category_id']) ? $arrCatList[$cnt]['category_id'] : "";
405            $val = isset($arrCatList[$cnt]['category_name']) ? $arrCatList[$cnt]['category_name'] : "";
406            $arrRet[$key] = $val;
407        }
408        return $arrRet;
409    }
410}
411?>
Note: See TracBrowser for help on using the repository browser.