{assign var="orderinfo" value=$action.orderinfo}
{include file="header.html"}
返金処理確認
{errorList->getMessages assign=errmsg}
{if $errmsg}
{foreach from=$errmsg item=msg}
- {$msg|escape}
{/foreach}
{/if}
| ▼購入情報 |
| 購入日 |
{$orderinfo.orderdate|date_format:"%Y/%m/%d"} |
| 受注番号 |
{$orderinfo.orderno} |
| 購入者 |
{if $orderinfo.ordermember != "" }
{$orderinfo.ordernm} |
{else}
{$orderinfo.sendbuyer} |
{/if}
| 金額 |
{$orderinfo.allprice|number_format}円 |
| 評価 |
{$orderinfo.valuation} |
| コメント |
{$orderinfo.comment|escape|nl2br} |
| ▼送付先情報 |
| 郵便番号 |
{$orderinfo.sendpostalcd} |
| 都道府県 |
{$orderinfo.prefnm} |
| 住所1 |
{$orderinfo.sendaddr1} |
| 住所2 |
{$orderinfo.sendaddr2} |
| 電話番号 |
{$orderinfo.sendtelno1} |
| 宛名 |
{$orderinfo.addressee} |
| ▼商品リスト |
| 出品番号 |
商品名 |
数量 |
金額 |
{foreach from=$action.data item=data}
| {$data.exno} |
{$data.itemnm} {$data.variationnm} |
{$data.count|number_format} |
{$data.price|number_format}円 |
{/foreach}
{include file="footer.html"}