| {{ __('admin::app.sales.refunds.id') }} | +{{ __('admin::app.sales.refunds.date') }} | +{{ __('admin::app.sales.refunds.order-id') }} | +{{ __('admin::app.sales.refunds.customer-name') }} | +{{ __('admin::app.sales.refunds.status') }} | +{{ __('admin::app.sales.refunds.refunded') }} | +{{ __('admin::app.sales.refunds.action') }} | +
|---|---|---|---|---|---|---|
| #{{ $refund->id }} | +{{ $refund->created_at }} | +#{{ $refund->order->id }} | +{{ $refund->order->customer_full_name }} | +{{ $refund->status_label }} | +{{ core()->formatBasePrice($refund->base_grand_total) }} | ++ + + + | +
| {{ __('admin::app.common.no-result-found') }} | +||||||
| {{ __('admin::app.sales.orders.SKU') }} | +{{ __('admin::app.sales.orders.product-name') }} | +{{ __('admin::app.sales.orders.price') }} | +{{ __('admin::app.sales.orders.qty') }} | +{{ __('admin::app.sales.orders.subtotal') }} | +{{ __('admin::app.sales.orders.tax-amount') }} | + @if ($refund->base_discount_amount > 0) +{{ __('admin::app.sales.orders.discount-amount') }} | + @endif +{{ __('admin::app.sales.orders.grand-total') }} | +
|---|---|---|---|---|---|---|---|
| {{ $item->child ? $item->child->sku : $item->sku }} | + +
+ {{ $item->name }}
+
+ @if ($html = $item->getOptionDetailHtml())
+ {{ $html }} + @endif + |
+
+ {{ core()->formatBasePrice($item->base_price) }} | + +{{ $item->qty }} | + +{{ core()->formatBasePrice($item->base_total) }} | + +{{ core()->formatBasePrice($item->base_tax_amount) }} | + + @if ($refund->base_discount_amount > 0) +{{ core()->formatBasePrice($item->base_discount_amount) }} | + @endif + +{{ core()->formatBasePrice($item->base_total + $item->base_tax_amount - $item->base_discount_amount) }} | +
| {{ __('admin::app.sales.orders.subtotal') }} | +- | +{{ core()->formatBasePrice($refund->base_sub_total) }} | +
| {{ __('admin::app.sales.orders.shipping-handling') }} | +- | +{{ core()->formatBasePrice($refund->base_shipping_amount) }} | +
| {{ __('admin::app.sales.orders.tax') }} | +- | +{{ core()->formatBasePrice($refund->base_tax_amount) }} | +
| {{ __('admin::app.sales.orders.discount') }} | +- | +-{{ core()->formatBasePrice($refund->base_discount_amount) }} | +
| {{ __('admin::app.sales.refunds.adjustment-refund') }} | +- | +{{ core()->formatBasePrice($refund->base_adjustment_refund) }} | +
| {{ __('admin::app.sales.refunds.adjustment-fee') }} | +- | +{{ core()->formatBasePrice($refund->base_adjustment_fee) }} | +
| {{ __('admin::app.sales.orders.grand-total') }} | +- | +{{ core()->formatBasePrice($refund->base_grand_total) }} | +
| {{ __('shop::app.customer.account.order.view.SKU') }} | +{{ __('shop::app.customer.account.order.view.product-name') }} | +{{ __('shop::app.customer.account.order.view.price') }} | +{{ __('shop::app.customer.account.order.view.qty') }} | +{{ __('shop::app.customer.account.order.view.subtotal') }} | +{{ __('shop::app.customer.account.order.view.tax-amount') }} | +{{ __('shop::app.customer.account.order.view.grand-total') }} | +
|---|---|---|---|---|---|---|
| {{ $item->child ? $item->child->sku : $item->sku }} | +{{ $item->name }} | +{{ core()->formatPrice($item->price, $order->order_currency_code) }} | +{{ $item->qty }} | +{{ core()->formatPrice($item->total, $order->order_currency_code) }} | +{{ core()->formatPrice($item->tax_amount, $order->order_currency_code) }} | +{{ core()->formatPrice($item->total + $item->tax_amount, $order->order_currency_code) }} | +
| {{ __('shop::app.customer.account.order.view.subtotal') }} | +- | +{{ core()->formatPrice($refund->sub_total, $order->order_currency_code) }} | +
| {{ __('shop::app.customer.account.order.view.shipping-handling') }} | +- | +{{ core()->formatPrice($refund->shipping_amount, $order->order_currency_code) }} | +
| {{ __('shop::app.customer.account.order.view.discount') }} | +- | +{{ core()->formatPrice($order->discount_amount, $order->order_currency_code) }} | +
| {{ __('shop::app.customer.account.order.view.tax') }} | +- | +{{ core()->formatPrice($refund->tax_amount, $order->order_currency_code) }} | +
| {{ __('shop::app.customer.account.order.view.adjustment-refund') }} | +- | +{{ core()->formatPrice($refund->adjustment_refund, $order->order_currency_code) }} | +
| {{ __('shop::app.customer.account.order.view.adjustment-fee') }} | +- | +{{ core()->formatPrice($refund->adjustment_fee, $order->order_currency_code) }} | +
| {{ __('shop::app.customer.account.order.view.grand-total') }} | +- | +{{ core()->formatPrice($refund->grand_total, $order->order_currency_code) }} | +