parent
e6104668e0
commit
6c82802371
|
|
@ -280,7 +280,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ __('admin::app.sales.orders.discount') }}</td>
|
<td>{{ __('admin::app.sales.orders.discount') }}</td>
|
||||||
<td>-</td>
|
<td>-</td>
|
||||||
<td>-{{ core()->formatBasePrice($invoice->base_discount_amount) }}</td>
|
<td>{{ core()->formatBasePrice($invoice->base_discount_amount) }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -312,7 +312,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ __('admin::app.sales.orders.discount') }}</td>
|
<td>{{ __('admin::app.sales.orders.discount') }}</td>
|
||||||
<td>-</td>
|
<td>-</td>
|
||||||
<td>-{{ core()->formatBasePrice($order->base_discount_amount) }}</td>
|
<td>{{ core()->formatBasePrice($order->base_discount_amount) }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -25,13 +25,13 @@
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
|
||||||
<div class="item-detail" id="discount-detail" @if ($cart->discount_amount && $cart->discount_amount > 0) style="display: block;" @else style="display: none;" @endif>
|
<div class="item-detail" id="discount-detail" @if ($cart->base_discount_amount && $cart->base_discount_amount > 0) style="display: block;" @else style="display: none;" @endif>
|
||||||
<label>
|
<label>
|
||||||
<b>{{ __('shop::app.checkout.total.disc-amount') }}</b>
|
<b>{{ __('shop::app.checkout.total.disc-amount') }}</b>
|
||||||
</label>
|
</label>
|
||||||
<label class="right">
|
<label class="right">
|
||||||
<b id="discount-detail-discount-amount">
|
<b id="discount-detail-discount-amount">
|
||||||
{{ core()->currency($cart->discount_amount) }}
|
{{ core()->currency($cart->base_discount_amount) }}
|
||||||
</b>
|
</b>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue