testemich Promotion

This commit is contained in:
Kevin Adametz 2022-04-14 13:21:17 +02:00
parent 38e7fd504a
commit a0f4eda6ea
83 changed files with 1690 additions and 504 deletions

View file

@ -157,7 +157,7 @@
}
#invoice_box table tr {
#invoice_box table tfoot tr {
page-break-after: avoid;
}

View file

@ -157,7 +157,7 @@
}
#invoice_box table tr {
#invoice_box table tfoot tr {
page-break-after: avoid;
}
@ -269,7 +269,7 @@
@if($shopping_order->shopping_user->billing_company)
{{ $shopping_order->shopping_user->billing_company }}<br>
@else
@if($shopping_order->payment_for !== 4)
@if($shopping_order->payment_for !== 7)
Firma <br>
@endif
@endif
@ -313,6 +313,11 @@
{{ __('Datum') }}: {{ $invoice_date }}
</td>
</tr>
<tr>
<td>
{{ __(' Umsatzsteuer-ID') }}: DE296797691
</td>
</tr>
</table>
</div>
<div id="invoice_box">
@ -334,29 +339,29 @@
</thead>
<tbody>
@foreach($shopping_order->shopping_order_items as $shopping_order_item)
<tr class="item">
<td class="small text-left">
{{ $shopping_order_item->product->name }}
</td>
<td class="text-center small">
{{ $shopping_order_item->qty }}
</td>
<td class="small text-center">
@if($shopping_order->shopping_user->is_from === 'user_order')
{{ $shopping_order_item->getFormattedPriceNet() }} &euro;
@else
{{ $shopping_order_item->getFormattedPrice() }} &euro;
@endif
</td>
<td class="text-right small">
@if($shopping_order->shopping_user->is_from === 'user_order')
{{ $shopping_order_item->getFormattedTotalPriceNet() }} &euro;
@else
{{ $shopping_order_item->getFormattedTotalPrice() }} &euro;
@endif
</td>
</tr>
@endforeach
<tr class="item">
<td class="small text-left">
{{ $shopping_order_item->product->name }}
</td>
<td class="text-center small">
{{ $shopping_order_item->qty }}
</td>
<td class="small text-center">
@if($shopping_order->shopping_user->is_from === 'user_order')
{{ $shopping_order_item->getFormattedPriceNet() }} &euro;
@else
{{ $shopping_order_item->getFormattedPrice() }} &euro;
@endif
</td>
<td class="text-right small">
@if($shopping_order->shopping_user->is_from === 'user_order')
{{ $shopping_order_item->getFormattedTotalPriceNet() }} &euro;
@else
{{ $shopping_order_item->getFormattedTotalPrice() }} &euro;
@endif
</td>
</tr>
@endforeach
</tbody>
<tfoot>
@if($shopping_order->shopping_user->is_from === 'user_order')
@ -368,6 +373,7 @@
{{ $shopping_order->getFormattedSubtotalFull() }} &euro;*
</td>
</tr>
@if($shopping_order->shopping_user->is_for !== 'cr')
<tr class="">
<td class="text-right no-border">&nbsp;</td>
<td class="text-right" colspan="2">
@ -386,6 +392,7 @@
<strong>{{ $shopping_order->getFormattedSubtotal() }} &euro;*</strong>
</td>
</tr>
@endif
@endif
<tr class="fullline">
@ -413,7 +420,12 @@
<tr class="">
<td class="text-right no-border">&nbsp;</td>
<td class="text-right" colspan="2">
{{__('email.checkout_mail_tax')}}
@if($shopping_order->isTax())
{{__('email.checkout_mail_tax_19')}}
@else
{{__('email.checkout_mail_tax')}}
@endif
</td>
<td class="text-right">
{{ $shopping_order->getFormattedTax() }} &euro;
@ -438,11 +450,15 @@
{{ $shopping_order->getFormattedPaymentCredit() }} &euro;
</td>
</tr>
@endif
@endif
<tr class="fullline">
<td class="text-right no-border">&nbsp;</td>
<td class="text-right" colspan="2">
<b>Gesamtsumme (Brutto):</b>
@if($shopping_order->isTax())
<b>Gesamtsumme (Brutto):</b>
@else
<b>Gesamtsumme:</b>
@endif
</td>
<td class="text-right">
<b>{{ $shopping_order->getFormattedTotalShipping() }} &euro;</b>
@ -460,9 +476,9 @@
</div>
<div id="footer_box">
<div class="text">
<p>Status der Rechnung: {{ App\Services\Payment::getFormattedTxaction($shopping_order->txaction) }}<br>
Zahlungsart: {{ $shopping_order->getLastShoppingPayment('getPaymentType') }}</p>
<p>Bei Kauf auf Rechnung / Vorauskasse, bitte den Gesamtbetrag innerhalb von 5 Werktagen auf unten stehendes Konto überweisen. Verwendungszweck: {{ $shopping_order->getLastShoppingPayment('reference') }}</p>
<p>Lieferdatum entspricht dem Rechnungsdatum.<br>
Verwendungszweck: <b>{{ $shopping_order->getLastShoppingPayment('reference') }}</b> / Status der Rechnung: <b>{{ App\Services\Payment::getFormattedTxaction($shopping_order->txaction) }}</b> / Zahlungsart: <b>{{ $shopping_order->getLastShoppingPayment('getPaymentType') }}</b><br>
Bei Kauf auf Rechnung / Vorauskasse, bitte den Gesamtbetrag innerhalb von 5 Werktagen auf unten stehendes Konto überweisen. </p>
</div>
</div>
</body>