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

91 lines
2.5 KiB
PHP

<style>
.tcbgcolor{
background-color: black;
}
#cell {
background-color: #000000;
color: #ffffff;
}
tr td {
background-color: #ffffff;
}
</style>
<table>
<thead>
<tr style="vertical-align: top">
<th colspan="3" >Rendelés azonosító: {{$humanId}}<br>
<strong>Szállító:</strong>
<br><br>
<strong>{{$supplier['name']}} </strong><br>
{{$supplier['address']}} <br>
<strong>Levelezési cím:</strong> {{$supplier['mailingAddress']}} <br>
<strong>Tel.: </strong> {{formatterPhoneNumber($supplier['phone'])}} , <strong>Fax: </strong>{{formatterPhoneNumber($supplier['fax'])}}<br>
<strong>Vevőszolgálat: </strong>{{formatterPhoneNumber($supplier['customerServicePhone'])}}, <strong>E-mail: </strong>{{$supplier['orderEmail']}}
@if(!empty($customNotificationEmail)), {{$customNotificationEmail}}@endif
<br>
</th>
<th colspan="4" >
{{--
style="height: 120px; border: 1px solid black">
--}}
Vevő: Delirest Kft
<br>1117 Bp. Irinyi J. u. 4-20.
<br>Szállítási cím:
@if(!empty($deliveryAddressName))
{{$deliveryAddressName}}
@else
{{$profit_center['name']}}
@endif
<br>{{$deliveryAddress}}
<br>Leadó: {{$contactName}}
<br>{{$profit_center['email']}} {{$profit_center['primaryPhone']}}
<br>Rendelés leadás: {{formatterDateTime($sentTime)}}
<br>Szállítási dátum: {{formatterDate($deliveryDate)}} @if($orderType=='weekly') - {{formatterDate(\Carbon\Carbon::parse($deliveryDate)->endOfWeek())}} @endif
@if($orderType!='weekly')<br>Tételek: {{count($items)}} @endif
<br>
@isset($note)
@if(!empty($note))
<strong>Megjegyzés: </strong> {{$note}}
@endif
@endisset
</th>
</tr>
<tr >
<th>Cikkszám</th>
<th>Megnevezés</th>
<th>Rendelt mennyiség</th>
<th>Kiszerelés</th>
<td>Egységszorzó</td>
<th>Nettó ár /mennyiségi egység</th>
<th>Mennyiségi egység</th>
<th>Nettó összesen</th>
</tr>
</thead>
<tbody>
@if($orderType=='daily')
@include("modules.order.excelExportDailyParts")
@else
@include("modules.order.excelExportWeeklyParts")
@endif
</tbody>
</table>