|
|
@@ -623,6 +623,46 @@
|
|
|
<td>{!! core()->formatPrice($invoice->discount_amount, $orderCurrencyCode) !!}</td>
|
|
|
</tr>
|
|
|
|
|
|
+ @if ($invoice->shipping_insurance_amount > 0)
|
|
|
+ <tr>
|
|
|
+ <td>@lang('shippinginsurance::app.shop.label')</td>
|
|
|
+ <td>-</td>
|
|
|
+ <td>+ {!! core()->formatPrice($invoice->shipping_insurance_amount, $orderCurrencyCode) !!}</td>
|
|
|
+ </tr>
|
|
|
+ @endif
|
|
|
+
|
|
|
+ @if ($invoice->giftcard_amount > 0)
|
|
|
+ <tr>
|
|
|
+ <td>@lang('gift::app.giftcard.giftcard_amount')</td>
|
|
|
+ <td>-</td>
|
|
|
+ <td>- {!! core()->formatPrice($invoice->giftcard_amount, $orderCurrencyCode) !!}</td>
|
|
|
+ </tr>
|
|
|
+ @endif
|
|
|
+
|
|
|
+ @if (! empty($invoice->giftcard_number))
|
|
|
+ <tr>
|
|
|
+ <td>@lang('gift::app.giftcard.giftcard_number')</td>
|
|
|
+ <td>-</td>
|
|
|
+ <td>{{ $invoice->giftcard_number }}</td>
|
|
|
+ </tr>
|
|
|
+ @endif
|
|
|
+
|
|
|
+ @if ($invoice->vip_plus_amount > 0)
|
|
|
+ <tr>
|
|
|
+ <td>@lang('member::app.member.discount')</td>
|
|
|
+ <td>-</td>
|
|
|
+ <td>+ {!! core()->formatPrice($invoice->vip_plus_amount, $orderCurrencyCode) !!}</td>
|
|
|
+ </tr>
|
|
|
+ @endif
|
|
|
+
|
|
|
+ @if ($invoice->vip_discount_amount > 0)
|
|
|
+ <tr>
|
|
|
+ <td>@lang('member::app.member.vip_discount')</td>
|
|
|
+ <td>-</td>
|
|
|
+ <td>- {!! core()->formatPrice($invoice->vip_discount_amount, $orderCurrencyCode) !!}</td>
|
|
|
+ </tr>
|
|
|
+ @endif
|
|
|
+
|
|
|
<tr>
|
|
|
<td style="border-top: 1px solid #FFFFFF;">
|
|
|
<b>@lang('shop::app.customers.account.orders.invoice-pdf.grand-total')</b>
|