Merge pull request #4995 from devansh-webkul/refund-fields
Some Extra Fields Added #4989
This commit is contained in:
commit
4cb9c1c17e
|
|
@ -230,6 +230,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th>{{ __('admin::app.sales.orders.SKU') }}</th>
|
<th>{{ __('admin::app.sales.orders.SKU') }}</th>
|
||||||
<th>{{ __('admin::app.sales.orders.product-name') }}</th>
|
<th>{{ __('admin::app.sales.orders.product-name') }}</th>
|
||||||
|
<th>{{ __('admin::app.sales.orders.price') }}</th>
|
||||||
<th>{{ __('admin::app.sales.orders.item-status') }}</th>
|
<th>{{ __('admin::app.sales.orders.item-status') }}</th>
|
||||||
<th>{{ __('admin::app.sales.orders.subtotal') }}</th>
|
<th>{{ __('admin::app.sales.orders.subtotal') }}</th>
|
||||||
<th>{{ __('admin::app.sales.orders.tax-amount') }}</th>
|
<th>{{ __('admin::app.sales.orders.tax-amount') }}</th>
|
||||||
|
|
@ -261,6 +262,8 @@
|
||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
<td>{{ core()->formatBasePrice($item->base_price) }}</td>
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
<span class="qty-row">
|
<span class="qty-row">
|
||||||
{{ $item->qty_ordered ? __('admin::app.sales.orders.item-ordered', ['qty_ordered' => $item->qty_ordered]) : '' }}
|
{{ $item->qty_ordered ? __('admin::app.sales.orders.item-ordered', ['qty_ordered' => $item->qty_ordered]) : '' }}
|
||||||
|
|
@ -283,7 +286,7 @@
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>{{ core()->formatBasePrice($item->base_price) }}</td>
|
<td>{{ core()->formatBasePrice($item->base_total) }}</td>
|
||||||
|
|
||||||
<td>{{ core()->formatBasePrice($item->base_tax_amount) }}</td>
|
<td>{{ core()->formatBasePrice($item->base_tax_amount) }}</td>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue