source: branches/version-2_5-dev/data/Smarty/templates/admin/products/confirm.tpl @ 20593

Revision 20593, 10.6 KB checked in by kotani, 13 years ago (diff)

#1017 ([管理画面]チェックボックスの値の引き継ぎができていない)

  • 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-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<form name="form1" id="form1" method="post" action="?" enctype="multipart/form-data">
25<input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
26<input type="hidden" name="mode" value="complete" />
27    <!--{foreach key=key item=item from=$arrSearchHidden}-->
28        <!--{if is_array($item)}-->
29            <!--{foreach item=c_item from=$item}-->
30            <input type="hidden" name="<!--{$key|h}-->[]" value="<!--{$c_item|h}-->" />
31            <!--{/foreach}-->
32        <!--{else}-->
33            <input type="hidden" name="<!--{$key|h}-->" value="<!--{$item|h}-->" />
34        <!--{/if}-->
35    <!--{/foreach}-->
36    <!--{foreach key=key item=item from=$arrForm}-->
37        <!--{if $key == 'product_status'}-->
38            <!--{foreach item=statusVal from=$item}-->
39            <input type="hidden" name="<!--{$key}-->[]" value="<!--{$statusVal|h}-->" />
40            <!--{/foreach}-->
41        <!--{else}-->
42            <input type="hidden" name="<!--{$key}-->" value="<!--{$item|h}-->" />
43        <!--{/if}-->
44    <!--{/foreach}-->
45    <div id="products" class="contents-main">
46
47    <table>
48        <tr>
49            <th>商品名</th>
50            <td>
51            <!--{$arrForm.name|h}-->
52            </td>
53        </tr>
54        <tr>
55            <th>商品カテゴリ</th>
56            <td>
57            <!--{section name=cnt loop=$arrForm.arrCategoryId}-->
58                <!--{assign var=key value=$arrForm.arrCategoryId[cnt]}-->
59                <!--{$arrCatList[$key]|strip|sfTrim}--><br />
60            <!--{/section}-->
61            </td>
62        </tr>
63        <tr>
64            <th>公開・非公開</th>
65            <td>
66            <!--{$arrDISP[$arrForm.status]}-->
67            </td>
68        </tr>
69        <tr>
70            <th>商品ステータス</th>
71            <td>
72            <!--{foreach from=$arrForm.product_status item=status}-->
73                <img src="<!--{$TPL_URLPATH_DEFAULT}--><!--{$arrSTATUS_IMAGE[$status]}-->">
74            <!--{/foreach}-->
75            </td>
76        </tr>
77
78        <!--{if $arrForm.has_product_class != true}-->
79            <tr>
80                <th>商品種別</th>
81                <td>
82                <!--{$arrProductType[$arrForm.product_type_id]}-->
83                </td>
84            </tr>
85            <tr>
86                <th>ダウンロード商品ファイル名</th>
87                <td>
88                <!--{$arrForm.down_filename|h}-->
89                </td>
90            </tr>
91            <tr>
92                <th>ダウンロード商品用<BR />ファイル</th>
93                <td>
94                <!--{if $arrForm.down_realfilename != ""}-->
95                        <!--{$arrForm.down_realfilename|h}-->
96                <!--{/if}-->
97                </td>
98            </tr>
99            <tr>
100                <th>商品コード</th>
101                <td>
102                <!--{$arrForm.product_code|h}-->
103                </td>
104            </tr>
105            <tr>
106                <th><!--{$smarty.const.NORMAL_PRICE_TITLE}--></th>
107                <td>
108                <!--{$arrForm.price01|h}-->
109                円</td>
110            </tr>
111            <tr>
112                <th><!--{$smarty.const.SALE_PRICE_TITLE}--></th>
113                <td>
114                <!--{$arrForm.price02|h}-->
115                円</td>
116            </tr>
117            <tr>
118                <th>在庫数</th>
119                <td>
120                <!--{if $arrForm.stock_unlimited == 1}-->
121                    無制限
122                <!--{else}-->
123                    <!--{$arrForm.stock|h}-->
124                <!--{/if}-->
125                </td>
126            </tr>
127        <!--{/if}-->
128
129        <tr>
130            <th>商品送料</th>
131            <td>
132                <!--{$arrForm.deliv_fee|h}-->
133                円</td>
134        </tr>
135        <tr>
136            <th>ポイント付与率</th>
137            <td>
138            <!--{$arrForm.point_rate|h}-->
139            %</td>
140        </tr>
141        <tr>
142            <th>発送日目安</th>
143            <td>
144            <!--{$arrDELIVERYDATE[$arrForm.deliv_date_id]|h}-->
145            </td>
146        </tr>
147        <tr>
148            <th>購入制限</th>
149            <td>
150                <!--{$arrForm.sale_limit|default:'無制限'|h}-->
151            </td>
152        </tr>
153        <tr>
154            <th>メーカー</th>
155            <td>
156                <!--{$arrMaker[$arrForm.maker_id]|h}-->
157            </td>
158        </tr>
159        <tr>
160            <th>メーカーURL</th>
161            <td>
162            <!--{$arrForm.comment1|h|sfPutBR:$smarty.const.LINE_LIMIT_SIZE}-->
163            </td>
164        </tr>
165        <!--{*
166        <tr>
167            <th>成分</th>
168            <td>
169            <!--{$arrForm.comment2|h}-->
170            </td>
171        </tr>
172        *}-->
173        <tr>
174            <th>検索ワード</th>
175            <td>
176            <!--{$arrForm.comment3|h}-->
177            </td>
178        </tr>
179        <tr>
180            <th>備考欄(SHOP専用)</th>
181            <td>
182                <!--{$arrForm.note|h|nl2br}-->
183            </td>
184        </tr>
185        <tr>
186            <th>一覧-メインコメント</th>
187            <td>
188            <!--{$arrForm.main_list_comment|h|nl2br}-->
189            </td>
190        </tr>
191        <tr>
192            <th>詳細-メインコメント</th>
193            <td>
194            <!--{$arrForm.main_comment|nl2br_html}-->
195            </td>
196        </tr>
197        <tr>
198            <th>一覧-メイン画像</th>
199            <td>
200            <!--{assign var=key value="main_list_image"}-->
201            <!--{if $arrForm.arrFile[$key].filepath != ""}-->
202            <img src="<!--{$arrForm.arrFile[$key].filepath}-->" alt="<!--{$arrForm.name|h}-->" /><br />
203            <!--{/if}-->
204            </td>
205        </tr>
206        <tr>
207            <th>詳細-メイン画像</th>
208            <td>
209            <!--{assign var=key value="main_image"}-->
210            <!--{if $arrForm.arrFile[$key].filepath != ""}-->
211            <img src="<!--{$arrForm.arrFile[$key].filepath}-->" alt="<!--{$arrForm.name|h}-->" /><br />
212            <!--{/if}-->
213            </td>
214        </tr>
215        <tr>
216            <th>詳細-メイン拡大画像</th>
217            <td>
218            <!--{assign var=key value="main_large_image"}-->
219            <!--{if $arrForm.arrFile[$key].filepath != ""}-->
220            <img src="<!--{$arrForm.arrFile[$key].filepath}-->" alt="<!--{$arrForm.name|h}-->" /><br />
221            <!--{/if}-->
222            </td>
223        </tr>
224
225        <!--{* オペビルダー用 *}-->
226        <!--{if "sfViewAdminOpe"|function_exists === TRUE}-->
227        <!--{include file=`$smarty.const.MODULE_REALDIR`mdl_opebuilder/admin_ope_view.tpl}-->
228        <!--{/if}-->
229
230        <!--{section name=cnt loop=$smarty.const.PRODUCTSUB_MAX}-->
231        <!--▼商品<!--{$smarty.section.cnt.iteration}-->-->
232        <tr>
233            <th>詳細-サブタイトル(<!--{$smarty.section.cnt.iteration}-->)</th>
234            <td>
235            <!--{assign var=key value="sub_title`$smarty.section.cnt.iteration`"}-->
236            <!--{$arrForm[$key]|h}-->
237            </td>
238        </tr>
239        <tr>
240            <th>詳細-サブコメント(<!--{$smarty.section.cnt.iteration}-->)</th>
241            <td>
242            <!--{assign var=key value="sub_comment`$smarty.section.cnt.iteration`"}-->
243            <!--{$arrForm[$key]|nl2br_html}-->
244            </td>
245        </tr>
246        <tr>
247            <th>詳細-サブ画像(<!--{$smarty.section.cnt.iteration}-->)</th>
248            <td>
249            <!--{assign var=key value="sub_image`$smarty.section.cnt.iteration`"}-->
250            <!--{if $arrForm.arrFile[$key].filepath != ""}-->
251            <img src="<!--{$arrForm.arrFile[$key].filepath}-->" alt="<!--{$arrForm.name|h}-->" /><br />
252            <!--{/if}-->
253            </td>
254        </tr>
255        <tr>
256            <th>詳細-サブ拡大画像(<!--{$smarty.section.cnt.iteration}-->)</th>
257            <td>
258            <!--{assign var=key value="sub_large_image`$smarty.section.cnt.iteration`"}-->
259            <!--{if $arrForm.arrFile[$key].filepath != ""}-->
260            <img src="<!--{$arrForm.arrFile[$key].filepath}-->" alt="<!--{$arrForm.name|h}-->" /><br />
261            <!--{/if}-->
262            </td>
263        </tr>
264        <!--▲商品<!--{$smarty.section.cnt.iteration}-->-->
265        <!--{/section}-->
266
267        <!--{if $smarty.const.OPTION_RECOMMEND == 1}-->
268        <!--▼関連商品-->
269        <!--{section name=cnt loop=$smarty.const.RECOMMEND_PRODUCT_MAX}-->
270        <!--{assign var=recommend_no value="`$smarty.section.cnt.iteration`"}-->
271        <tr>
272            <th>関連商品(<!--{$smarty.section.cnt.iteration}-->)<br />
273            <!--{if $arrRecommend[$recommend_no].product_id|strlen >= 1}-->
274                <img src="<!--{$smarty.const.ROOT_URLPATH}-->resize_image.php?image=<!--{$arrRecommend[$recommend_no].main_list_image|sfNoImageMainList|h}-->&amp;width=65&amp;height=65" alt="<!--{$arrRecommend[$recommend_no].name|h}-->">
275            <!--{/if}-->
276            </th>
277            <td>
278            <!--{if $arrRecommend[$recommend_no].product_id|strlen >= 1}-->
279                商品コード:<!--{$arrRecommend[$recommend_no].product_code_min}--><br />
280                商品名:<!--{$arrRecommend[$recommend_no].name|h}--><br />
281                コメント:<br />
282                <!--{$arrRecommend[$recommend_no].comment|h|nl2br}-->
283            <!--{/if}-->
284            </td>
285        </tr>
286        <!--{/section}-->
287        <!--▲関連商品-->
288        <!--{/if}-->
289    </table>
290
291    <div class="btn-area">
292        <ul>
293            <li><a class="btn-action" href="javascript:;" onclick="fnModeSubmit('confirm_return','',''); return false;"><span class="btn-prev">前のページに戻る</span></a></li>
294            <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"><span class="btn-next">この内容で登録する</span></a></li>
295        </ul>
296    </div>
297</div>
298</form>
Note: See TracBrowser for help on using the repository browser.