Free Shipping, Business Levels correction, Products Buying, Fonts
This commit is contained in:
parent
3f2fbd6d5b
commit
0341c9c189
197 changed files with 9161 additions and 329 deletions
|
|
@ -16,7 +16,7 @@
|
|||
{{ $shopping_order_item->product->number }}
|
||||
</td>
|
||||
<td class="small text-left">
|
||||
{{ $shopping_order_item->product->name }}
|
||||
{{ maxStrLength($shopping_order_item->product->name, 35) }}
|
||||
</td>
|
||||
<td class="text-right small">
|
||||
{{ $shopping_order_item->qty }}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
{{ $value->product->number }}
|
||||
</td>
|
||||
<td class="small text-left">
|
||||
{{ $value->product->name }}
|
||||
{{ maxStrLength($value->product->name, 35) }}
|
||||
</td>
|
||||
<td class="text-right small">
|
||||
{{ $value->qty }}
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
{{ $shop_item['number'] }}
|
||||
</td>
|
||||
<td class="small text-left">
|
||||
{{$shop_item['name']}}
|
||||
{{ maxStrLength($shop_item['name'], 30) }}
|
||||
</td>
|
||||
<td class="text-right small">
|
||||
{{$shop_item['points_total']}}
|
||||
|
|
|
|||
|
|
@ -32,9 +32,8 @@
|
|||
{{ $shopping_order_item->product->number }}
|
||||
</td>
|
||||
<td class="small text-left">
|
||||
{{ $shopping_order_item->product->name }}
|
||||
{{ maxStrLength($shopping_order_item->product->name , 35) }}
|
||||
</td>
|
||||
|
||||
@if($shopping_order->payment_for === 6)
|
||||
<td class="text-right small">
|
||||
{{ $shopping_order_item->getFormattedPrice() }} €
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
{{ $value->product->number }}
|
||||
</td>
|
||||
<td class="small text-left">
|
||||
{{ $value->product->name }}
|
||||
{{ maxStrLength($value->product->name , 35) }}
|
||||
</td>
|
||||
<td class="text-right small">
|
||||
{{ $value->qty }}
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@
|
|||
@foreach($order['shopping_order']->shopping_order_items as $shopping_order_item)
|
||||
<tr class="">
|
||||
<td class="text-left">
|
||||
<strong>{{ $shopping_order_item->product->name }}</strong>
|
||||
<strong>{{ maxStrLength($shopping_order_item->product->name, 35) }}</strong>
|
||||
<span class="text-muted">#{{ $shopping_order_item->product->number }}</span>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue