source: branches/version-2_5-dev/data/Smarty/templates/admin/basis/zip_install.tpl @ 20407

Revision 20407, 3.6 KB checked in by kotani, 13 years ago (diff)

#812 (トランザクションIDの自動生成/自動検証), #1053 (transactionidが埋め込まれる前にクリックされるとエラー)

  • transactionid用hiddenタグをJavaScriptで生成しないように変更
  • 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<!--{if $tpl_mode|strlen == 0 || $arrErr|@count >= 1}-->
25    <style type="text/css">
26       
27    </style>
28    <form name="form1" id="form1" method="get" action="?" onsubmit="return false;">
29        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
30        <input type="hidden" name="mode" value="">
31        <p>郵便番号CSVには <!--{$tpl_line|h}--> 行のデータがあります。</p>
32        <p>郵便番号DBには <!--{$tpl_count_mtb_zip|h}--> 行のデータがあります。</p>
33        <!--{if $tpl_count_mtb_zip == 0}-->
34            <p class="attention">登録を行なってください。</p>
35        <!--{elseif $tpl_line <> $tpl_count_mtb_zip}-->
36            <p class="attention">行数に差異があります。登録に異常がある恐れがあります。</p>
37        <!--{/if}-->
38
39        <div class="basis-zip-item info">
40            <p>通常は、[自動登録] を利用してください。<br />
41                ただし、タイムアウトしてしまう環境では、タイムアウトした後に [手動登録] を正常に完了するまで繰り返してください。</p>
42        </div>
43
44        <div class="basis-zip-item">
45            <h2>自動更新</h2>
46            <p>全ての郵便番号を削除してから、登録しなおします。タイムアウトした場合、元の状態に戻ります。</p>
47            <p><a class="btn-normal" href="javascript:;" onclick="fnModeSubmit('auto', '', ''); return false;"><span class="btn-next">自動更新</span></a></p>
48        </div>
49
50        <div class="basis-zip-item delete">
51            <h2>手動更新</h2>
52            <p>指定した行数から郵便番号を登録します。タイムアウトした場合、直前まで登録されます。</p>
53            <p><a class="btn-normal" href="javascript:;" onclick="fnModeSubmit('manual', '', ''); return false;"><span class="btn-next">手動更新</span></a> 開始行: <input type="text" name="startRowNum" value="<!--{$arrForm.startRowNum|default:$tpl_count_mtb_zip+1|h}-->" size="8"><span class="attention"><!--{$arrErr.startRowNum}--></span></p>
54        </div>
55
56        <div class="basis-zip-item end">
57            <h2>削除</h2>
58            <p>全ての郵便番号を削除します。再登録するまで、住所自動入力は機能しなくなります。</p>
59            <p><a class="btn-normal" href="javascript:;" onclick="fnModeSubmit('delete', '', ''); return false;"><span class="btn-next">削除</span></a></p>
60        </div>
61    </form>
62<!--{else}-->
63    <iframe src="?mode=<!--{$tpl_mode|h}-->&amp;exec=yes&amp;startRowNum=<!--{$arrForm.startRowNum|h}-->" name="progress" height="200" width="750" frameborder="0"></iframe>
64<!--{/if}-->
Note: See TracBrowser for help on using the repository browser.