source: branches/version-2_5-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductSelect.php @ 20116

Revision 20116, 5.8 KB checked in by nanasess, 13 years ago (diff)
  • svn properties を再設定
  • 再設定用のスクリプト追加
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • 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-2010 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_REALDIR . "pages/admin/LC_Page_Admin.php");
26
27/**
28 * 商品選択 のページクラス.
29 *
30 * @package Page
31 * @author LOCKON CO.,LTD.
32 * @version $Id$
33 */
34class LC_Page_Admin_Products_ProductSelect extends LC_Page_Admin {
35
36    // }}}
37    // {{{ functions
38
39    /**
40     * Page を初期化する.
41     *
42     * @return void
43     */
44    function init() {
45        parent::init();
46        $this->tpl_mainpage = 'products/product_select.tpl';
47        $this->tpl_mainno = 'products';
48        $this->tpl_subnavi = '';
49        $this->tpl_subno = "";
50        $this->tpl_subtitle = '商品選択';
51
52        $masterData = new SC_DB_MasterData_Ex();
53        $this->arrPRODUCTSTATUS_COLOR = $masterData->getMasterData("mtb_product_status_color");
54    }
55
56    /**
57     * Page のプロセス.
58     *
59     * @return void
60     */
61    function process() {
62        $this->action();
63        $this->sendResponse();
64    }
65
66    /**
67     * Page のアクション.
68     *
69     * @return void
70     */
71    function action() {
72        $objSess = new SC_Session();
73        $objDb = new SC_Helper_DB_Ex();
74
75        // 認証可否の判定
76        SC_Utils_Ex::sfIsSuccess($objSess);
77
78        switch ($this->getMode()) {
79        case 'search':
80            // POST値の引き継ぎ
81            $this->arrForm = $_POST;
82            // 入力文字の強制変換
83            $this->lfConvertParam();
84
85            $where = "del_flg = 0";
86
87            /* 入力エラーなし */
88            foreach ($this->arrForm as $key => $val) {
89                if($val == "") {
90                    continue;
91                }
92
93                switch ($key) {
94                case 'search_name':
95                    $where .= " AND name ILIKE ?";
96                    $arrval[] = "%$val%";
97                    break;
98                case 'search_category_id':
99                    list($tmp_where, $tmp_arrval) = $objDb->sfGetCatWhere($val);
100                    if($tmp_where != "") {
101                        $where.= " AND product_id IN (SELECT product_id FROM dtb_product_categories WHERE " . $tmp_where . ")";
102                        $arrval = array_merge((array)$arrval, (array)$tmp_arrval);
103                    }
104                    break;
105                case 'search_product_code':
106                    $where .= " AND product_id IN (SELECT product_id FROM dtb_products_class WHERE product_code LIKE ? GROUP BY product_id)";
107                    $arrval[] = "$val%";
108                    break;
109                default:
110                    break;
111                }
112            }
113
114            $order = "update_date DESC, product_id DESC ";
115
116            $objQuery = new SC_Query();
117            // 行数の取得
118            if (empty($arrval)) {
119                $arrval = array();
120            }
121            $linemax = $objQuery->count("dtb_products", $where, $arrval);
122            $this->tpl_linemax = $linemax;              // 何件が該当しました。表示用
123
124            // ページ送りの処理
125            if(isset($_POST['search_page_max'])
126               && is_numeric($_POST['search_page_max'])) {
127                $page_max = $_POST['search_page_max'];
128            } else {
129                $page_max = SEARCH_PMAX;
130            }
131
132            // ページ送りの取得
133            $objNavi = new SC_PageNavi($_POST['search_pageno'], $linemax, $page_max, "fnNaviSearchOnlyPage", NAVI_PMAX);
134            $this->tpl_strnavi = $objNavi->strnavi;     // 表示文字列
135            $startno = $objNavi->start_row;
136
137            // 取得範囲の指定(開始行番号、行数のセット)
138            $objQuery->setLimitOffset($page_max, $startno);
139            // 表示順序
140            $objQuery->setOrder($order);
141
142            // 検索結果の取得
143            // FIXME 商品コードの表示
144            $this->arrProducts = $objQuery->select("*", SC_Product::alldtlSQL(), $where, $arrval);
145            break;
146        default:
147            break;
148        }
149
150        // カテゴリ取得
151        $this->arrCatList = $objDb->sfGetCategoryList();
152        $this->setTemplate($this->tpl_mainpage);
153    }
154
155    /**
156     * デストラクタ.
157     *
158     * @return void
159     */
160    function destroy() {
161        parent::destroy();
162    }
163
164    /* 取得文字列の変換 */
165    function lfConvertParam() {
166        /*
167         *  文字列の変換
168         *  K :  「半角(ハンカク)片仮名」を「全角片仮名」に変換
169         *  C :  「全角ひら仮名」を「全角かた仮名」に変換
170         *  V :  濁点付きの文字を一文字に変換。"K","H"と共に使用します
171         *  n :  「全角」数字を「半角(ハンカク)」に変換
172         */
173        $arrConvList['search_name'] = "KVa";
174        $arrConvList['search_product_code'] = "KVa";
175
176        // 文字変換
177        foreach ($arrConvList as $key => $val) {
178            // POSTされてきた値のみ変換する。
179            if(isset($this->arrForm[$key])) {
180                $this->arrForm[$key] = mb_convert_kana($this->arrForm[$key] ,$val);
181            }
182        }
183    }
184}
185?>
Note: See TracBrowser for help on using the repository browser.