d2d.emegrendeles.hu/resources/views/modules/order/excelExportDailyParts.blade.php
E98Developer 68b7c35bef git init
2026-02-28 06:53:05 +01:00

27 lines
837 B
PHP

@foreach($items as $key=>$item)
<tr>
<td>{{$item['supplierProductNumber']}}</td>
<td>{{$item['name']}}</td>
<td>{{$item['quantity']}}</td>
<td>{{$item['sellerUnit']}}</td>
<td>{{$item['unitMultiplier']}}</td>
<td>{{$item['price']}}</td>
<td>{{$item['amountUnit']}}</td>
<td>{{$item['amount']}}</td>
</tr>
@isset($item['comment'])
@if(!empty($item['comment']))
<tr>
<td colspan="7" style="padding-left: 1em;"> {{$item['supplierProductNumber']}} megjegyzés: {{$item['comment']}}</td>
</tr>
@endif
@endisset
@endforeach
<tr class="invoiceSumRow" >
<td >Végösszeg:</td>
<td colspan="6" style="text-align: right;"> {{str_replace(",00", "", number_format($sumPrice,2,',',' '))}} Ft</td>
</tr>