23-01-2026
This commit is contained in:
parent
a939cd51ef
commit
a8b395e20d
248 changed files with 29342 additions and 4805 deletions
|
|
@ -44,7 +44,7 @@
|
|||
@if($value->user_sales_volume)
|
||||
<tr>
|
||||
<td>{{ $value->user_sales_volume->date }}</td>
|
||||
<td>{{ $value->user_sales_volume->points }}</td>
|
||||
<td>{{ $value->user_sales_volume->getFormattedPoints() }}</td>
|
||||
<td>{{ formatNumber($value->user_sales_volume->total_net) }} €</td>
|
||||
<td>{{ $value->user_sales_volume->getStatusType() }}</td>
|
||||
<td>@if($value->user_sales_volume->user)
|
||||
|
|
|
|||
|
|
@ -67,6 +67,9 @@
|
|||
@else
|
||||
<br>
|
||||
@endif
|
||||
@if($current->shipping_postnumber)
|
||||
<strong>DHL {{ __('payment.dhl_postnumber') }}: {{ $current->shipping_postnumber }}</strong><br>
|
||||
@endif
|
||||
{{ $current->shipping_zipcode }}
|
||||
{{ $current->shipping_city }}<br>
|
||||
{{ $current->shipping_email }}<br>
|
||||
|
|
@ -183,6 +186,9 @@
|
|||
@else
|
||||
<br>
|
||||
@endif
|
||||
@if($possible->shipping_postnumber)
|
||||
<strong>DHL {{ __('payment.dhl_postnumber') }}: {{ $possible->shipping_postnumber }}</strong><br>
|
||||
@endif
|
||||
{{ $possible->shipping_zipcode }}
|
||||
{{ $possible->shipping_city }}<br>
|
||||
{{ $possible->shipping_email }}<br>
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
<tbody>
|
||||
<tr>
|
||||
<td class="border-0 text-muted align-middle" style="width: 110px">{{ __('order.points') }}:</td>
|
||||
<td class="border-0">{{ $product->points }}</td>
|
||||
<td class="border-0">{{ $product->getFormattedPoints() }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="border-0 text-muted align-middle" style="width: 110px">{{ __('order.content') }}:</td>
|
||||
|
|
|
|||
|
|
@ -51,8 +51,8 @@
|
|||
</div>
|
||||
|
||||
<div class="form-group col-sm-12">
|
||||
<label for="growth_bonus" class="form-label">{{__('Wachstumsbonus in %')}} </label>
|
||||
{{ Form::text('growth_bonus', $value->getFormattedGrowthBonus(), array('placeholder'=>__('Wachstumsbonus in %'), 'class'=>'form-control', 'id'=>'growth_bonus')) }}
|
||||
<label for="growth_bonus" class="form-label">{{__('Tiefenbonus in %')}} </label>
|
||||
{{ Form::text('growth_bonus', $value->getFormattedGrowthBonus(), array('placeholder'=>__('Tiefenbonus in %'), 'class'=>'form-control', 'id'=>'growth_bonus')) }}
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue