Ignore:
Timestamp:
2013/07/30 16:01:59 (11 years ago)
Author:
habu
Message:

#2314 注文内容確認画面と受注メールに「注文者情報」を出力する

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/Smarty/templates/default/shopping/confirm.tpl

    r22955 r23013  
    171171            <!--{/if}--> 
    172172            <!--{* ログイン済みの会員のみ *}--> 
     173 
     174            <!--{* ▼注文者 *}--> 
     175            <h3>ご注文者</h3> 
     176            <table summary="ご注文者" class="customer"> 
     177                <col width="30%" /> 
     178                <col width="70%" /> 
     179                <tbody> 
     180                    <tr> 
     181                        <th scope="row">お名前</th> 
     182                        <td><!--{$arrForm.order_name01|h}--> <!--{$arrForm.order_name02|h}--></td> 
     183                    </tr> 
     184                    <tr> 
     185                        <th scope="row">お名前(フリガナ)</th> 
     186                        <td><!--{$arrForm.order_kana01|h}--> <!--{$arrForm.order_kana02|h}--></td> 
     187                    </tr> 
     188                    <tr> 
     189                        <th scope="row">郵便番号</th> 
     190                        <td>〒<!--{$arrForm.order_zip01|h}-->-<!--{$arrForm.order_zip02|h}--></td> 
     191                    </tr> 
     192                    <tr> 
     193                        <th scope="row">住所</th> 
     194                        <td><!--{$arrPref[$arrForm.order_pref]}--><!--{$arrForm.order_addr01|h}--><!--{$arrForm.order_addr02|h}--></td> 
     195                    </tr> 
     196                    <tr> 
     197                        <th scope="row">電話番号</th> 
     198                        <td><!--{$arrForm.order_tel01}-->-<!--{$arrForm.order_tel02}-->-<!--{$arrForm.order_tel03}--></td> 
     199                    </tr> 
     200                    <tr> 
     201                        <th scope="row">FAX番号</th> 
     202                        <td> 
     203                            <!--{if $arrForm.order_fax01 > 0}--> 
     204                                <!--{$arrForm.order_fax01}-->-<!--{$arrForm.order_fax02}-->-<!--{$arrForm.order_fax03}--> 
     205                            <!--{/if}--> 
     206                        </td> 
     207                    </tr> 
     208                    <tr> 
     209                        <th scope="row">メールアドレス</th> 
     210                        <td><!--{$arrForm.order_email|h}--></td> 
     211                    </tr> 
     212                    <tr> 
     213                        <th scope="row">性別</th> 
     214                        <td><!--{$arrSex[$arrForm.order_sex]|h}--></td> 
     215                    </tr> 
     216                    <tr> 
     217                        <th scope="row">職業</th> 
     218                        <td><!--{$arrJob[$arrForm.order_job]|default:'(未登録)'|h}--></td> 
     219                    </tr> 
     220                    <tr> 
     221                        <th scope="row">生年月日</th> 
     222                        <td> 
     223                            <!--{$arrForm.order_birth|regex_replace:"/ .+/":""|regex_replace:"/-/":"/"|default:'(未登録)'|h}--> 
     224                        </td> 
     225                    </tr> 
     226                </tbody> 
     227            </table> 
    173228 
    174229            <!--{* ▼お届け先 *}--> 
Note: See TracChangeset for help on using the changeset viewer.