Sammelbestellung von Extern
This commit is contained in:
parent
d01b4bd560
commit
582ca8299d
33 changed files with 3437 additions and 1466 deletions
|
|
@ -66,60 +66,57 @@
|
|||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="1">
|
||||
Summen:
|
||||
</td>
|
||||
<td class="text-right" colspan="1">
|
||||
<strong>{{ $shopApiOrderCart->points_total }} <strong>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<strong>{{ $shopApiOrderCart->qty_total }}</strong>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<strong>{{ formatNumber($shopApiOrderCart->price_total_net) }} €</strong>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<strong>{{ formatNumber($shopApiOrderCart->tax_total) }} €</strong>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="6">
|
||||
<strong>Gesamte netto</strong>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<strong>{{ formatNumber($shopApiOrderCart->price_total_net) }} €</strong>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="border-none td-small">
|
||||
<td colspan="5">
|
||||
zzgl. MwSt:
|
||||
</td>
|
||||
|
||||
<td class="text-right" colspan="2">
|
||||
@foreach ($shopApiOrderCart->tax_split as $rate => $tax )
|
||||
{{ $rate }}% = {{ formatNumber($tax) }} € <br>
|
||||
@endforeach
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="6">
|
||||
<strong>Gesamtsumme Brutto: </strong>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<strong>{{ formatNumber($shopApiOrderCart->getTotalPrice()) }} €<strong>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<td colspan="7">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="1">
|
||||
Summen:
|
||||
</td>
|
||||
<td class="text-right" colspan="1">
|
||||
<strong>{{ $shopApiOrderCart->points }} <strong>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<strong>{{ $shopApiOrderCart->qty_total }}</strong>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<strong>{{ formatNumber($shopApiOrderCart->price_total_net) }} €</strong>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<strong>{{ formatNumber($shopApiOrderCart->tax_total) }} €</strong>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="6">
|
||||
<strong>Gesamte netto</strong>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<strong>{{ formatNumber($shopApiOrderCart->price_total_net) }} €</strong>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="border-none td-small">
|
||||
<td colspan="5">
|
||||
zzgl. MwSt:
|
||||
</td>
|
||||
|
||||
<td class="text-right" colspan="2">
|
||||
@foreach ($shopApiOrderCart->tax_split as $rate => $tax )
|
||||
{{ $rate }}% = {{ formatNumber($tax) }} € <br>
|
||||
@endforeach
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="6">
|
||||
<strong>Gesamtsumme Brutto: </strong>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<strong>{{ formatNumber($shopApiOrderCart->getTotalPrice()) }} €</strong>
|
||||
</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@
|
|||
<div class="card">
|
||||
<h5 class="card-header">
|
||||
{{ __('Externe Bestellungen') }}
|
||||
add api_action change wp_notice to api_notice
|
||||
</h5>
|
||||
|
||||
<div class="card-body p-0">
|
||||
|
|
@ -44,8 +43,8 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>{{__('Status') }}
|
||||
<th>{{__('Versand') }}
|
||||
<th>{{__('Status') }}</th>
|
||||
<th>{{__('Versand') }}</th>
|
||||
<th>{{__('First name')}}</th>
|
||||
<th>{{__('Last name')}}</th>
|
||||
<th>{{__('E-Mail')}}</th>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue