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

source: branches/version-2_12-dev/data/Smarty/templates/default/mypage/history.tpl @ 22197

Revision 22197, 13.5 KB checked in by habu, 11 years ago (diff)

#1730 税率変更に対応できない

  • 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-2012 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
25<div id="mypagecolumn">
26    <h2 class="title"><!--{$tpl_title|h}--></h2>
27    <!--{include file=$tpl_navi}-->
28    <div id="mycontents_area">
29        <h3><!--{$tpl_subtitle|h}--></h3>
30        <div class="mycondition_area clearfix">
31            <p>
32                <span class="st">購入日時:&nbsp;</span><!--{$tpl_arrOrderData.create_date|sfDispDBDate}--><br />
33                <span class="st">注文番号:&nbsp;</span><!--{$tpl_arrOrderData.order_id}--><br />
34                <span class="st">お支払い方法:&nbsp;</span><!--{$arrPayment[$tpl_arrOrderData.payment_id]|h}-->
35            </p>
36            <form action="order.php" method="post">
37                <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
38                <p class="btn">
39                    <input type="hidden" name="order_id" value="<!--{$tpl_arrOrderData.order_id|h}-->">
40                    <input type="image" onmouseover="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_order_re_on.jpg', this);" onmouseout="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_order_re.jpg', this);" src="<!--{$TPL_URLPATH}-->img/button/btn_order_re.jpg" alt="この購入内容で再注文する" name="submit" value="この購入内容で再注文する" />
41                </p>
42            </form>
43        </div>
44
45        <table summary="購入商品詳細">
46            <col width="15%" />
47            <col width="25%" />
48            <col width="20%" />
49            <col width="15%" />
50            <col width="10%" />
51            <col width="15%" />
52            <tr>
53                <th class="alignC">商品コード</th>
54                <th class="alignC">商品名</th>
55                <th class="alignC">商品種別</th>
56                <th class="alignC">単価</th>
57                <th class="alignC">数量</th>
58                <th class="alignC">小計</th>
59            </tr>
60            <!--{foreach from=$tpl_arrOrderDetail item=orderDetail}-->
61                <tr>
62                    <td><!--{$orderDetail.product_code|h}--></td>
63                    <td><a<!--{if $orderDetail.enable}--> href="<!--{$smarty.const.P_DETAIL_URLPATH}--><!--{$orderDetail.product_id|u}-->"<!--{/if}-->><!--{$orderDetail.product_name|h}--></a><br />
64                        <!--{if $orderDetail.classcategory_name1 != ""}-->
65                            <!--{$orderDetail.classcategory_name1|h}--><br />
66                        <!--{/if}-->
67                        <!--{if $orderDetail.classcategory_name2 != ""}-->
68                            <!--{$orderDetail.classcategory_name2|h}-->
69                        <!--{/if}-->
70                    </td>
71                    <td class="alignC">
72                    <!--{if $orderDetail.product_type_id == $smarty.const.PRODUCT_TYPE_DOWNLOAD}-->
73                        <!--{if $orderDetail.is_downloadable}-->
74                            <a target="_self" href="<!--{$smarty.const.ROOT_URLPATH}-->mypage/download.php?order_id=<!--{$tpl_arrOrderData.order_id}-->&product_id=<!--{$orderDetail.product_id}-->&product_class_id=<!--{$orderDetail.product_class_id}-->">ダウンロード</a>
75                        <!--{else}-->
76                            <!--{if $orderDetail.payment_date == "" && $orderDetail.effective == "0"}-->
77                                <!--{$arrProductType[$orderDetail.product_type_id]}--><BR />(入金確認中)
78                            <!--{else}-->
79                                <!--{$arrProductType[$orderDetail.product_type_id]}--><BR />(期限切れ)
80                            <!--{/if}-->
81                        <!--{/if}-->
82                    <!--{else}-->
83                        <!--{$arrProductType[$orderDetail.product_type_id]}-->
84                    <!--{/if}-->
85                    </td>
86                    <!--{assign var=price value=`$orderDetail.price`}-->
87                    <!--{assign var=quantity value=`$orderDetail.quantity`}-->
88                    <!--{assign var=tax_rate value=`$orderDetail.tax_rate`}-->
89                    <!--{assign var=tax_rule value=`$orderDetail.tax_rule`}-->
90                    <td class="alignR"><!--{$price|sfCalcIncTax:$tax_rate:$tax_rule|number_format|h}-->円</td>
91                    <td class="alignR"><!--{$quantity|h}--></td>
92                    <td class="alignR"><!--{$price|sfCalcIncTax:$tax_rate:$tax_rule|sfMultiply:$quantity|number_format}-->円</td>
93                </tr>
94            <!--{/foreach}-->
95            <tr>
96                <th colspan="5" class="alignR">小計</th>
97                <td class="alignR"><!--{$tpl_arrOrderData.subtotal|number_format}-->円</td>
98            </tr>
99            <!--{assign var=point_discount value="`$tpl_arrOrderData.use_point*$smarty.const.POINT_VALUE`"}-->
100            <!--{if $point_discount > 0}-->
101            <tr>
102                <th colspan="5" class="alignR">ポイント値引き</th>
103                <td class="alignR">&minus;<!--{$point_discount|number_format}-->円</td>
104            </tr>
105            <!--{/if}-->
106            <!--{assign var=key value="discount"}-->
107            <!--{if $tpl_arrOrderData[$key] != "" && $tpl_arrOrderData[$key] > 0}-->
108            <tr>
109                <th colspan="5" class="alignR">値引き</th>
110                <td class="alignR">&minus;<!--{$tpl_arrOrderData[$key]|number_format}-->円</td>
111            </tr>
112            <!--{/if}-->
113            <tr>
114                <th colspan="5" class="alignR">送料</th>
115                <td class="alignR"><!--{assign var=key value="deliv_fee"}--><!--{$tpl_arrOrderData[$key]|number_format|h}-->円</td>
116            </tr>
117            <tr>
118                <th colspan="5" class="alignR">手数料</th>
119                <!--{assign var=key value="charge"}-->
120                <td class="alignR"><!--{$tpl_arrOrderData[$key]|number_format|h}-->円</td>
121            </tr>
122            <tr>
123                <th colspan="5" class="alignR">合計</th>
124                <td class="alignR"><span class="price"><!--{$tpl_arrOrderData.payment_total|number_format}-->円</span></td>
125            </tr>
126        </table>
127
128        <!-- 使用ポイントここから -->
129        <!--{if $smarty.const.USE_POINT !== false}-->
130            <table summary="使用ポイント">
131                <col width="30%" />
132                <col width="70%" />
133                <tr>
134                    <th class="alignL">ご使用ポイント</th>
135                    <td><!--{assign var=key value="use_point"}--><!--{$tpl_arrOrderData[$key]|number_format|default:0}--> pt</td>
136                </tr>
137                <tr>
138                    <th class="alignL">今回加算されるポイント</th>
139                    <td><!--{$tpl_arrOrderData.add_point|number_format|default:0}--> pt</td>
140                </tr>
141            </table>
142        <!--{/if}-->
143        <!-- 使用ポイントここまで -->
144
145        <!--{foreach item=shippingItem name=shippingItem from=$arrShipping}-->
146            <h3>お届け先<!--{if $isMultiple}--><!--{$smarty.foreach.shippingItem.iteration}--><!--{/if}--></h3>
147            <!--{if $isMultiple}-->
148                <table summary="お届け内容確認">
149                    <col width="30%" />
150                    <col width="40%" />
151                    <col width="20%" />
152                    <col width="10%" />
153                    <tr>
154                        <th class="alignC">商品コード</th>
155                        <th class="alignC">商品名</th>
156                        <th class="alignC">単価</th>
157                        <th class="alignC">数量</th>
158                        <!--{* XXX 購入小計と誤差が出るためコメントアウト
159                        <th>小計</th>
160                        *}-->
161                    </tr>
162                    <!--{foreach item=item from=$shippingItem.shipment_item}-->
163                        <tr>
164                            <td><!--{$item.productsClass.product_code|h}--></td>
165                            <td><!--{* 商品名 *}--><!--{$item.productsClass.name|h}--><br />
166                                <!--{if $item.productsClass.classcategory_name1 != ""}-->
167                                    <!--{$item.productsClass.class_name1}-->:<!--{$item.productsClass.classcategory_name1}--><br />
168                                <!--{/if}-->
169                                <!--{if $item.productsClass.classcategory_name2 != ""}-->
170                                    <!--{$item.productsClass.class_name2}-->:<!--{$item.productsClass.classcategory_name2}-->
171                                <!--{/if}-->
172                            </td>
173                            <td class="alignR">
174                                <!--{$item.price|sfCalcIncTax:$tpl_arrOrderData.order_tax_rate:$tpl_arrOrderData.order_tax_rule|number_format}-->円
175                            </td>
176                            <td class="alignC"><!--{$item.quantity}--></td>
177                            <!--{* XXX 購入小計と誤差が出るためコメントアウト
178                            <td class="alignR"><!--{$item.total_inctax|number_format}-->円</td>
179                            *}-->
180                        </tr>
181                    <!--{/foreach}-->
182                </table>
183            <!--{/if}-->
184            <table summary="お届け先" class="delivname">
185                    <col width="30%" />
186                    <col width="70%" />
187                    <tr>
188                        <th class="alignL">お名前</th>
189                        <td><!--{$shippingItem.shipping_name01|h}-->&nbsp;<!--{$shippingItem.shipping_name02|h}--></td>
190                    </tr>
191                    <tr>
192                        <th class="alignL">お名前(フリガナ)</th>
193                        <td><!--{$shippingItem.shipping_kana01|h}-->&nbsp;<!--{$shippingItem.shipping_kana02|h}--></td>
194                    </tr>
195                    <tr>
196                        <th class="alignL">郵便番号</th>
197                        <td>〒<!--{$shippingItem.shipping_zip01}-->-<!--{$shippingItem.shipping_zip02}--></td>
198                    </tr>
199                    <tr>
200                        <th class="alignL">住所</th>
201                        <td><!--{$arrPref[$shippingItem.shipping_pref]}--><!--{$shippingItem.shipping_addr01|h}--><!--{$shippingItem.shipping_addr02|h}--></td>
202                    </tr>
203                    <tr>
204                        <th class="alignL">電話番号</th>
205                        <td><!--{$shippingItem.shipping_tel01}-->-<!--{$shippingItem.shipping_tel02}-->-<!--{$shippingItem.shipping_tel03}--></td>
206                    </tr>
207                    <tr>
208                        <th class="alignL">FAX番号</th>
209                        <td>
210                            <!--{if $shippingItem.shipping_fax01 > 0}-->
211                                <!--{$shippingItem.shipping_fax01}-->-<!--{$shippingItem.shipping_fax02}-->-<!--{$shippingItem.shipping_fax03}-->
212                            <!--{/if}-->
213                        </td>
214                    </tr>
215                    <tr>
216                        <th class="alignL">お届け日</th>
217                        <td><!--{$shippingItem.shipping_date|default:'指定なし'|h}--></td>
218                    </tr>
219                    <tr>
220                        <th class="alignL">お届け時間</th>
221                        <td><!--{$shippingItem.shipping_time|default:'指定なし'|h}--></td>
222                    </tr>
223                </tbody>
224            </table>
225        <!--{/foreach}-->
226
227        <br />
228
229        <h3>メール配信履歴一覧</h3>
230        <table>
231            <tr>
232                <th class="alignC">処理日</th>
233                <th class="alignC">通知メール</th>
234                <th class="alignC">件名</th>
235            </tr>
236            <!--{section name=cnt loop=$tpl_arrMailHistory}-->
237            <tr class="center">
238                <td class="alignC"><!--{$tpl_arrMailHistory[cnt].send_date|sfDispDBDate|h}--></td>
239                <!--{assign var=key value="`$tpl_arrMailHistory[cnt].template_id`"}-->
240                <td class="alignC"><!--{$arrMAILTEMPLATE[$key]|h}--></td>
241                <td><a href="#" onclick="win02('./mail_view.php?send_id=<!--{$tpl_arrMailHistory[cnt].send_id}-->','mail_view','650','800'); return false;"><!--{$tpl_arrMailHistory[cnt].subject|h}--></a></td>
242            </tr>
243            <!--{/section}-->
244        </table>
245
246        <div class="btn_area">
247            <ul>
248                <li>
249                    <a href="./<!--{$smarty.const.DIR_INDEX_PATH}-->" onmouseover="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_back_on.jpg','change');" onmouseout="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_back.jpg','change');"><img src="<!--{$TPL_URLPATH}-->img/button/btn_back.jpg" alt="戻る" name="change" id="change" /></a>
250                </li>
251            </ul>
252        </div>
253
254    </div>
255</div>
Note: See TracBrowser for help on using the repository browser.