Warning: Can't use blame annotator:
svn blame failed on branches/version-2_5-dev/data/Smarty/templates/admin/customer/edit.tpl: バイナリファイル 'file:///home/svn/open/branches/version-2_5-dev/data/Smarty/templates/admin/customer/edit.tpl' に対しては blame で各行の最終変更者を計算できません 195004

source: branches/version-2_5-dev/data/Smarty/templates/admin/customer/edit.tpl @ 20433

Revision 20433, 17.0 KB checked in by nanasess, 13 years ago (diff)

#1007(lfConvertParamが散在する)

  • LC_Page_FrontParts_LoginCheck.php での処理を削除. ログイン時でのパスワード最小値, 最大値チェックは不要と思われるため

#627(ソース整形・ソースコメントの改善)

  • PASSWORD_LEN1, PASSWORD_LEN2 を PASSWORD_MIN_LEN, PASSWORD_MAX_LEN, に変更

#1032(フロントデザインリニューアル)

  • ヘッダ用ログインブロックを追加するとログアウトが動作しない場合があったのを修正

#986([フロント]フロントパーツ)

  • $objFormParam をローカル変数化
  • ログインパラメータのチェックを, shopping/index.php に合わせるよう修正
  • 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
RevLine 
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<script type="text/javascript">
25<!--
26
27    function fnReturn() {
28        document.search_form.action = './<!--{$smarty.const.DIR_INDEX_PATH}-->';
29        document.search_form.submit();
30        return false;
31    }
32
33    function fnOrderidSubmit(order_id, order_id_value) {
34        if(order_id != "" && order_id_value != "") {
35            document.form2[order_id].value = order_id_value;
36        }
37        document.form2.action = '../order/edit.php';
38        document.form2.submit();
39    }
40
41//-->
42</script>
43
44<form name="search_form" method="post" action="">
45    <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
46    <input type="hidden" name="mode" value="search" />
47
48    <!--{foreach from=$arrSearchData key="key" item="item"}-->
49        <!--{if $key ne "customer_id" && $key ne "mode" && $key ne "edit_customer_id" && $key ne $smarty.const.TRANSACTION_ID_NAME}-->
50          <!--{if is_array($item)}-->
51            <!--{foreach item=c_item from=$item}-->
52              <input type="hidden" name="<!--{$key|h}-->[]" value="<!--{$c_item|h}-->" />
53            <!--{/foreach}-->
54          <!--{else}-->
55            <input type="hidden" name="<!--{$key|h}-->" value="<!--{$item|h}-->" />
56          <!--{/if}-->
57        <!--{/if}-->
58    <!--{/foreach}-->
59</form>
60
61<form name="form1" id="form1" method="post" action="?">
62    <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
63    <input type="hidden" name="mode" value="confirm" />
64    <input type="hidden" name="customer_id" value="<!--{$arrForm.customer_id|h}-->" />
65
66    <!-- 検索条件の保持 -->
67    <!--{foreach from=$arrSearchData key="key" item="item"}-->
68        <!--{if $key ne "customer_id" && $key ne "mode" && $key ne "edit_customer_id" && $key ne $smarty.const.TRANSACTION_ID_NAME}-->
69          <!--{if is_array($item)}-->
70            <!--{foreach item=c_item from=$item}-->
71              <input type="hidden" name="search_data[<!--{$key|h}-->][]" value="<!--{$c_item|h}-->" />
72            <!--{/foreach}-->
73          <!--{else}-->
74            <input type="hidden" name="search_data[<!--{$key|h}-->]" value="<!--{$item|h}-->" />
75          <!--{/if}-->
76        <!--{/if}-->
77    <!--{/foreach}-->
78
79    <div id="customer" class="contents-main">
80        <h2><!--{if $arrForm.customer_id}-->顧客編集<!--{else}-->顧客登録<!--{/if}--></h2>
81        <table class="form">
82            <!--{if $arrForm.customer_id}-->
83            <tr>
84                <th>顧客ID<span class="attention"> *</span></th>
85                <td><!--{$arrForm.customer_id|h}--></td>
86            </tr>
87            <!--{/if}-->
88            <tr>
89                <th>会員状態<span class="attention"> *</span></th>
90                <td>
91                    <span class="attention"><!--{$arrErr.status}--></span>
92                    <span <!--{if $arrErr.status != ""}--><!--{sfSetErrorStyle}--><!--{/if}-->>
93                        <!--{html_radios name="status" options=$arrStatus separator=" " selected=$arrForm.status}-->
94                    </span>
95                </td>
96            </tr>
97            <tr>
98                <th>お名前<span class="attention"> *</span></th>
99                <td>
100                    <span class="attention"><!--{$arrErr.name01}--><!--{$arrErr.name02}--></span>
101                    <input type="text" name="name01" value="<!--{$arrForm.name01|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="30" class="box30" <!--{if $arrErr.name01 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> />&nbsp;&nbsp;<input type="text" name="name02" value="<!--{$arrForm.name02|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="30" class="box30" <!--{if $arrErr.name02 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> />
102                </td>
103            </tr>
104            <tr>
105                <th>お名前(フリガナ)<span class="attention"> *</span></th>
106                <td>
107                    <span class="attention"><!--{$arrErr.kana01}--><!--{$arrErr.kana02}--></span>
108                    <input type="text" name="kana01" value="<!--{$arrForm.kana01|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="30" class="box30" <!--{if $arrErr.kana01 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> />&nbsp;&nbsp;<input type="text" name="kana02" value="<!--{$arrForm.kana02|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="30" class="box30" <!--{if $arrErr.kana02 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> />
109                </td>
110            </tr>
111            <tr>
112                <th>郵便番号<span class="attention"> *</span></th>
113                <td>
114                    <span class="attention"><!--{$arrErr.zip01}--><!--{$arrErr.zip02}--></span>
115                    〒 <input type="text" name="zip01" value="<!--{$arrForm.zip01|h}-->" maxlength="<!--{$smarty.const.ZIP01_LEN}-->" size="6" class="box6" maxlength="3" <!--{if $arrErr.zip01 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> /> - <input type="text" name="zip02" value="<!--{$arrForm.zip02|h}-->" maxlength="<!--{$smarty.const.ZIP02_LEN}-->" size="6" class="box6" maxlength="4" <!--{if $arrErr.zip02 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> />
116                    <a class="btn-normal" href="javascript:;" name="address_input" onclick="fnCallAddress('<!--{$smarty.const.INPUT_ZIP_URLPATH}-->', 'zip01', 'zip02', 'pref', 'addr01'); return false;">住所入力</a>
117                </td>
118            </tr>
119            <tr>
120                <th>住所<span class="attention"> *</span></th>
121                <td>
122                    <span class="attention"><!--{$arrErr.pref}--><!--{$arrErr.addr01}--><!--{$arrErr.addr02}--></span>
123                    <select class="top" name="pref" <!--{if $arrErr.pref != ""}--><!--{sfSetErrorStyle}--><!--{/if}-->>
124                        <option class="top" value="" selected="selected">都道府県を選択</option>
125                        <!--{html_options options=$arrPref selected=$arrForm.pref}-->
126                    </select><br />
127                    <input type="text" name="addr01" value="<!--{$arrForm.addr01|h}-->" size="60" class="box60" <!--{if $arrErr.addr01 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> /><br />
128                    <!--{$smarty.const.SAMPLE_ADDRESS1}--><br />
129                    <input type="text" name="addr02" value="<!--{$arrForm.addr02|h}-->" size="60" class="box60" <!--{if $arrErr.addr02 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> /><br />
130                    <!--{$smarty.const.SAMPLE_ADDRESS2}-->
131                </td>
132            </tr>
133            <tr>
134                <th>メールアドレス<span class="attention"> *</span></th>
135                <td>
136                    <span class="attention"><!--{$arrErr.email}--></span>
137                    <input type="text" name="email" value="<!--{$arrForm.email|h}-->" size="60" class="box60" <!--{if $arrErr.email != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> />
138                </td>
139            </tr>
140            <tr>
141                <th>携帯メールアドレス</th>
142                <td>
143                    <span class="attention"><!--{$arrErr.email_mobile}--></span>
144                    <input type="text" name="email_mobile" value="<!--{$arrForm.email_mobile|h}-->" size="60" class="box60" <!--{if $arrErr.email_mobile != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> />
145                </td>
146            </tr>
147            <tr>
148                <th>電話番号<span class="attention"> *</span></th>
149                <td>
150                    <span class="attention"><!--{$arrErr.tel01}--><!--{$arrErr.tel02}--><!--{$arrErr.tel03}--></span>
151                    <input type="text" name="tel01" value="<!--{$arrForm.tel01|h}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" size="6" class="box6" <!--{if $arrErr.tel01 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> /> - <input type="text" name="tel02" value="<!--{$arrForm.tel02|h}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" size="6" class="box6" <!--{if $arrErr.tel01 != "" || $arrErr.tel02 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> /> - <input type="text" name="tel03" value="<!--{$arrForm.tel03|h}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" size="6" class="box6" <!--{if $arrErr.tel01 != "" || $arrErr.tel03 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> />
152                </td>
153            </tr>
154            <tr>
155                <th>FAX</th>
156                <td>
157                    <span class="attention"><!--{$arrErr.fax01}--><!--{$arrErr.fax02}--><!--{$arrErr.fax03}--></span>
158                    <input type="text" name="fax01" value="<!--{$arrForm.fax01|h}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" size="6" class="box6" <!--{if $arrErr.fax01 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> /> - <input type="text" name="fax02" value="<!--{$arrForm.fax02|h}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" size="6" class="box6" <!--{if $arrErr.fax01 != "" || $arrErr.tel02 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> /> - <input type="text" name="fax03" value="<!--{$arrForm.fax03|h}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" size="6" class="box6" <!--{if $arrErr.fax01 != "" || $arrErr.fax03 != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> />
159                </td>
160            </tr>
161            <tr>
162                <th>ご性別<span class="attention"> *</span></th>
163                <td>
164                    <span class="attention"><!--{$arrErr.sex}--></span>
165                    <span <!--{if $arrErr.sex != ""}--><!--{sfSetErrorStyle}--><!--{/if}-->>
166                        <!--{html_radios name="sex" options=$arrSex separator=" " selected=$arrForm.sex}-->
167                    </span>
168                </td>
169            </tr>
170            <tr>
171                <th>ご職業</th>
172                <td>
173                    <span class="attention"><!--{$arrErr.job}--></span>
174                    <select name="job" <!--{if $arrErr.job != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> >
175                    <option value="" selected="selected">選択してください</option>
176                    <!--{html_options options=$arrJob selected=$arrForm.job}-->
177                    </select>
178                </td>
179            </tr>
180            <tr>
181                <th>生年月日</th>
182                <td>
183                    <span class="attention"><!--{$arrErr.year}--></span>
184                    <select name="year" <!--{if $arrErr.year != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> >
185                        <option value="" selected="selected">------</option>
186                        <!--{html_options options=$arrYear selected=$arrForm.year}-->
187                    </select>年
188                    <select name="month" <!--{if $arrErr.year != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> >
189                        <option value="" selected="selected">----</option>
190                        <!--{html_options options=$arrMonth selected=$arrForm.month}-->
191                    </select>月
192                    <select name="day" <!--{if $arrErr.year != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> >
193                        <option value="" selected="selected">----</option>
194                        <!--{html_options options=$arrDay selected=$arrForm.day"}-->
195                    </select>日
196                </td>
197            </tr>
198            <tr>
199                <th>パスワード<span class="attention"> *</span></th>
200                <td>
201                    <span class="attention"><!--{$arrErr.password}--></span>
202                    <input type="password" name="password" value="<!--{$arrForm.password|h}-->" size="30" class="box30" <!--{if $arrErr.password != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> /> 半角英数小文字<!--{$smarty.const.PASSWORD_MIN_LEN}-->~<!--{$smarty.const.PASSWORD_MAX_LEN}-->文字(記号不可)
203                </td>
204            </tr>
205            <tr>
206                <th>パスワードを忘れたときのヒント<span class="attention"> *</span></th>
207                <td>
208                    <span class="attention"><!--{$arrErr.reminder}--><!--{$arrErr.reminder_answer}--></span>
209                    質問:
210                    <select class="top" name="reminder" <!--{if $arrErr.reminder != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> >
211                        <option value="" selected="selected">選択してください</option>
212                        <!--{html_options options=$arrReminder selected=$arrForm.reminder}-->
213                    </select><br />
214                    答え:
215                    <input type="text" name="reminder_answer" value="<!--{$arrForm.reminder_answer|h}-->" size="30" class="box30" <!--{if $arrErr.reminder_answer != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> />
216                </td>
217            </tr>
218            <tr>
219                <th>メールマガジン<span class="attention"> *</span></th>
220                <td>
221                    <span class="attention"><!--{$arrErr.mailmaga_flg}--></span>
222                    <span <!--{if $arrErr.mailmaga_flg != ""}--><!--{sfSetErrorStyle}--><!--{/if}-->>
223                        <!--{html_radios name="mailmaga_flg" options=$arrMailMagazineType separator=" " selected=$arrForm.mailmaga_flg}-->
224                    </span>
225                </td>
226            </tr>
227            <tr>
228                <th>SHOP用メモ</th>
229                <td>
230                    <span class="attention"><!--{$arrErr.note}--></span>
231                    <textarea name="note" maxlength="<!--{$smarty.const.LTEXT_LEN}-->" <!--{if $arrErr.note != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> cols="60" rows="8" class="area60"><!--{$arrForm.note|h}--></textarea>
232                </td>
233            </tr>
234            <tr>
235                <th>所持ポイント</th>
236                <td>
237                    <span class="attention"><!--{$arrErr.point}--></span>
238                    <input type="text" name="point" value="<!--{$arrForm.point|h}-->" maxlength="<!--{$smarty.const.TEL_LEN}-->" <!--{if $arrErr.point != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> size="6" class="box6" <!--{if $arrErr.point != ""}--><!--{sfSetErrorStyle}--><!--{/if}--> /> pt
239                </td>
240            </tr>
241        </table>
242
243        <div class="btn-area">
244          <ul>
245            <li><a class="btn-action" href="javascript:;" onclick="return fnReturn();"><span class="btn-prev">検索画面に戻る</span></a></li>
246            <li><a class="btn-action" href="javascript:;" onclick="fnSetFormSubmit('form1', 'mode', 'confirm'); return false;"><span class="btn-next">確認ページへ</span></a></li>
247          </ul>
248        </div>
249
250        <input type="hidden" name="order_id" value="" />
251        <input type="hidden" name="search_pageno" value="<!--{$tpl_pageno}-->">
252        <input type="hidden" name="edit_customer_id" value="<!--{$edit_customer_id}-->" >
253
254        <h2>購入履歴一覧</h2>
255        <!--{if $tpl_linemax > 0}-->
256        <p><span class="attention"><!--購入履歴一覧--><!--{$tpl_linemax}-->件</span>&nbsp;が該当しました。</p>
257
258        <!--{include file=$tpl_pager}-->
259
260            <!--{* 購入履歴一覧表示テーブル *}-->
261            <table class="list">
262                <tr>
263                    <th>日付</th>
264                    <th>注文番号</th>
265                    <th>購入金額</th>
266                    <th>発送日</th>
267                    <th>支払方法</th>
268                </tr>
269                <!--{section name=cnt loop=$arrPurchaseHistory}-->
270                <tr>
271                    <td><!--{$arrPurchaseHistory[cnt].create_date|sfDispDBDate}--></td>
272                    <td class="center"><a href="#" onclick="fnOpenWindow('../order/edit.php?order_id=<!--{$arrPurchaseHistory[cnt].order_id}-->','order_disp','800','900'); return false;" ><!--{$arrPurchaseHistory[cnt].order_id}--></a></td>
273                    <td class="center"><!--{$arrPurchaseHistory[cnt].payment_total|number_format}-->円</td>
274                    <td class="center"><!--{if $arrPurchaseHistory[cnt].status eq 5}--><!--{$arrPurchaseHistory[cnt].commit_date|sfDispDBDate}--><!--{else}-->未発送<!--{/if}--></td>
275                    <!--{assign var=payment_id value="`$arrPurchaseHistory[cnt].payment_id`"}-->
276                    <td class="center"><!--{$arrPayment[$payment_id]|h}--></td>
277                </tr>
278                <!--{/section}-->
279            </table>
280            <!--{* 購入履歴一覧表示テーブル *}-->
281        <!--{else}-->
282            <div class="message">購入履歴はありません。</div>
283        <!--{/if}-->
284
285    </div>
286</form>
Note: See TracBrowser for help on using the repository browser.