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

Revision 18819, 3.9 KB checked in by eccuore, 14 years ago (diff)

#792(ダウンロード販売機能) 入金日追加、規格対応(規格構成変更と並行で作業中なので、作業途中の部分有)

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