@php use Illuminate\Support\Arr; @endphp # Amazon.co.jpに出品された商品に対する注文が確定いたしました。 このEメールの手順に従って、商品を出荷し、出荷通知を送信してください。 注文番号: {{ $order->amazon_order_id }} 以下の商品を発送してください。 @php $total = 0; @endphp @foreach ($items as $item) 商品: {{ $item->title }}
コンディション: {{ $item->getConditionTextForDeliveryNote() }}
コンディション説明: {{ Arr::get($item->data, 'ConditionNote') }}
出品ID: {{ $item->getExhibitionId() }}
SKU: {{ $item->sku }}
数量: {{ $item->quantity_ordered }}
注文日: {{ $item->purchase_date->format('Y/m/d') }}
価格: ¥{{ number_format(Arr::get($item->data, 'ItemPrice.Amount', 0)) }}
配送料: ¥{{ number_format(Arr::get($item->data, 'ShippingPrice.Amount', 0)) }}
ギフト包装料: ¥{{ number_format(Arr::get($item->data, 'GiftWrapPrice.Amount', 0)) }}
商品価格に対する税金: ¥{{ number_format(Arr::get($item->data, 'ItemTax.Amount', 0)) }}
配送料に対する税金: ¥{{ number_format(Arr::get($item->data, 'ShippingTax.Amount', 0)) }}
プロモーション値引き: ¥{{ number_format(Arr::get($item->data, 'PromotionDiscount.Amount', 0)) }}
代引手数料: ¥{{ number_format(Arr::get($item->data, 'CodFee.Amount', 0)) }}
代引手数料に対する値引き: ¥{{ number_format(Arr::get($item->data, 'CodFeeDiscount.Amount', 0)) }}
@if (!empty($estimates[$item->sku])) Amazon手数料: ¥{{ number_format(Arr::get($estimates[$item->sku], 'result.TotalFeesEstimate.Amount', 0)) }}
@endif 出荷予定日: {{ $item->getShipDateRange() }} @php $total += Arr::get($item->data, 'ItemPrice.Amount', 0) + Arr::get($item->data, 'ShippingPrice.Amount', 0); if (!empty($estimates[$item->sku])) { $total -= floor(Arr::get($estimates[$item->sku], 'result.TotalFeesEstimate.Amount', 0) * 1.1); } @endphp @endforeach 振込金額合計: ¥{{ number_format($total) }} {{ config('app.name') }}