source: branches/version-2_11-dev/data/Smarty/templates/admin/contents/csv_sql.tpl @ 21033

Revision 21033, 5.3 KB checked in by AMUAMU, 13 years ago (diff)

#1402 (高度な設定-SQL出力にて、登録済みSQLの編集が出来ない) の不具合修正。
あわせて編集中が分かりにくいという意見から、少し表示を足しました。

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2011 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<script type="text/javascript">
25<!--
26// SQL確認画面起動
27function doPreview(){
28    document.form1.mode.value="preview"
29    document.form1.target = "_blank";
30    document.form1.submit();
31}
32
33// formのターゲットを自分に戻す
34function fnTargetSelf(){
35    document.form1.target = "_self";
36}
37
38//-->
39</script>
40
41
42<form name="form1" id="form1" method="post" action="?">
43<input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
44<input type="hidden" name="mode" value="confirm" />
45<input type="hidden" name="sql_id" value="<!--{$arrForm.sql_id|h}-->" />
46<input type="hidden" name="csv_output_id" value="" />
47<input type="hidden" name="select_table" value="" />
48<div id="admin-contents" class="contents-main">
49    <h2>SQL一覧</h2>
50
51    <!--{if $arrSqlList}-->
52        <table id="contents-csv-sqllist" class="list center">
53            <!--{foreach key=key item=item from=$arrSqlList}-->
54                <tr style="background-color:<!--{if $item.sql_id == $arrForm.sql_id}--><!--{$smarty.const.SELECT_RGB}--><!--{else}-->#ffffff<!--{/if}-->;">
55                    <td>
56                        <a href="?sql_id=<!--{$item.sql_id}-->" ><!--{$item.sql_name|h}--></a>
57                    </td>
58                    <td>
59                        <div class="btn">
60                            <a class="btn-normal" href="javascript:;" name='csv' onclick="fnTargetSelf(); fnFormModeSubmit('form1','csv_output','csv_output_id',<!--{$item.sql_id}-->); return false;"><span>CSV出力</span></a>
61                            <a class="btn-normal" href="javascript:;" name='del' onclick="fnTargetSelf(); fnFormModeSubmit('form1','delete','sql_id',<!--{$item.sql_id}-->); return false;"><span>削除</span></a>
62                        </div>
63                    </td>
64                </tr>
65            <!--{/foreach}-->
66        </table>
67    <!--{/if}-->
68
69    <div class="btn addnew">
70        <a class="btn-normal" href="javascript:;" name='subm' onclick="fnTargetSelf(); fnFormModeSubmit('form1','new_page','',''); return false;"><span>SQLを新規入力</span></a>
71    </div>
72
73
74    <h2>SQL設定<!--{if $arrForm.sql_id != ""}-->(編集中:<!--{$arrForm.sql_name|h}-->)<!--{else}-->(新規入力)<!--{/if}--></h2>
75    <table id="contents-csv-sqlset" class="form">
76        <tr>
77            <th>名称<span class="attention"> *</span></th>
78            <td>
79                <span class="attention"><!--{$arrErr.sql_name}--></span>
80                <input type="text" name="sql_name" value="<!--{$arrForm.sql_name|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" style="<!--{if $arrErr.name != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->" size="60" class="box60" />
81                <span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span>
82            </td>
83        </tr>
84        <tr>
85            <th align="center">SQL文<span class="attention"> *</span><br /> (最初のSELECTは記述しないでください。)</td>
86            <td align="left">
87                <span class="attention"><!--{$arrErr.csv_sql}--></span>
88                <div>
89                    <textarea name="csv_sql" cols=50 rows=20 align="left" wrap=off style="<!--{if $arrErr.csv_sql != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->"><!--{$arrForm.csv_sql|h}--></textarea>
90                </div>
91            </td>
92        </tr>
93    </table>
94
95    <div class="btn">
96        <a class="btn-normal" href="javascript:;" name="subm" onclick="doPreview(); return false;"><span>構文エラーを確認する</span></a>
97    </div>
98    <div class="btn-area">
99        <ul>
100            <li><a class="btn-action" href="javascript:;" name="subm" onclick="fnFormModeSubmit('form1', 'confirm', '', '')"><span class="btn-next">この内容で登録する</span></a></li>
101        </ul>
102    </div>
103
104
105
106    <div id="contents-csv-sqltbl">
107        <h3>テーブル一覧</h3>
108        <select name="arrTableList[]" size="20" style="width:325px; height:300px;" onChange="mode.value=''; select_table.value=this.value; submit();" onDblClick="csv_sql.value = csv_sql.value +' , ' + this.value;">
109            <!--{html_options options=$arrTableList selected=$arrForm.select_table}-->
110        </select>
111    </div>
112    <div id="contents-csv-sqlcol">
113        <h3>項目一覧</h3>
114        <select name="arrColList[]" size="20" style="width:325px; height:300px;" onDblClick="csv_sql.value = csv_sql.value +' , ' + this.value;">
115            <!--{html_options options=$arrColList}-->
116        </select>
117    </div>
118
119</div>
120</form>
121
122
123</script>
Note: See TracBrowser for help on using the repository browser.