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

Revision 20116, 4.1 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-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<h2>確認</h2>
25<form name="form1" id="form1" method="post" action="?" enctype="multipart/form-data">
26<!--{foreach key=key item=item from=$arrForm}-->
27    <input type="hidden" name="<!--{$key}-->" value="<!--{$item|h}-->" />
28<!--{/foreach}-->
29
30<!--{foreach key=key item=item from=$arrHidden}-->
31<input type="hidden" name="<!--{$key}-->" value="<!--{$item|h}-->" />
32<!--{/foreach}-->
33<div id="products" class="contents-main">
34
35  <!--{if $tpl_check > 0}-->
36  <table class="list">
37    <!--{assign var=class_id1 value=$arrForm.class_id1}-->
38    <!--{assign var=class_id2 value=$arrForm.class_id2}-->
39    <tr>
40      <th>規格1(<!--{$arrClass[$class_id1]|default:"未選択"}-->)</th>
41      <th>規格2(<!--{$arrClass[$class_id2]|default:"未選択"}-->)</th>
42      <th>商品コード</th>
43      <th>在庫数</th>
44      <th><!--{$smarty.const.NORMAL_PRICE_TITLE}-->(円)</th>
45      <th><!--{$smarty.const.SALE_PRICE_TITLE}-->(円)</th>
46      <th>商品種別</th>
47      <th>ダウンロードファイル名</th>
48      <th>ダウンロード商品用ファイルアップロード</th>
49    </tr>
50    <!--{section name=cnt loop=$tpl_count}-->
51    <!--{assign var=key value="check:`$smarty.section.cnt.iteration`"}-->
52    <!--{if $arrForm[$key] == 1}-->
53    <tr>
54      <!--{assign var=key value="name1:`$smarty.section.cnt.iteration`"}-->
55      <td><!--{$arrForm[$key]}--></td>
56      <!--{assign var=key value="name2:`$smarty.section.cnt.iteration`"}-->
57      <td><!--{$arrForm[$key]}--></td>
58      <!--{assign var=key value="product_code:`$smarty.section.cnt.iteration`"}-->
59      <td><!--{$arrForm[$key]}--></td>
60      <!--{assign var=key1 value="stock:`$smarty.section.cnt.iteration`"}-->
61      <!--{assign var=key2 value="stock_unlimited:`$smarty.section.cnt.iteration`"}-->
62      <td class="right">
63      <!--{if $arrForm[$key2] == 1}-->
64        無制限
65      <!--{else}-->
66        <!--{$arrForm[$key1]}-->
67      <!--{/if}-->
68      </td>
69      <!--{assign var=key value="price01:`$smarty.section.cnt.iteration`"}-->
70      <td class="right"><!--{$arrForm[$key]}--></td>
71      <!--{assign var=key value="price02:`$smarty.section.cnt.iteration`"}-->
72      <td class="right"><!--{$arrForm[$key]}--></td>
73      <!--{assign var=key value="product_type_id:`$smarty.section.cnt.iteration`"}-->
74      <td class="right">
75      <!--{foreach from=$arrForm[$key] item=product_type_id}-->
76        <!--{$arrProductType[$product_type_id]|h}-->
77      <!--{/foreach}-->
78      </td>
79      <!--{assign var=key value="down_filename:`$smarty.section.cnt.iteration`"}-->
80      <td class="right"><!--{$arrForm[$key]}--></td>
81      <!--{assign var=key value="down_realfilename:`$smarty.section.cnt.iteration`"}-->
82      <td class="right"><!--{$arrForm[$key]}--></td>
83    </tr>
84    <!--{/if}-->
85    <!--{/section}-->
86  </table>
87  <!--{else}-->
88  <div class="message">規格が選択されていません。</div>
89  <!--{/if}-->
90
91  <div class="btn-area">
92    <ul>
93      <li><a class="btn-action" href="javascript:;" onclick="fnFormModeSubmit('form1', 'confirm_return','',''); return false"><span class="btn-prev">前へ戻る</span></a></li>
94    <!--{if $tpl_check > 0}-->
95      <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"><span class="btn-next">この内容で登録する</span></a></li>
96    <!--{/if}-->
97    </ul>
98  </div>
99</div>
100</form>
Note: See TracBrowser for help on using the repository browser.