TRANSFER ORDER / PACKING LIST REPORT

Transfer Order ID {{ $transferOrder->id }}
Franchise {{ $transferOrder->franchise->name }}
Source Warehouse {{ $transferOrder->sourceWarehouse->name }}
Destination Shop: {{ $transferOrder->destinationWarehouse->name }}
Status {{ $transferOrder->status }}
Created By {{ optional($transferOrder->createdBy)->name ?? 'Unknown' }}
Created At {{ $transferOrder->created_at->format('d-m-Y H:i') }}
Report Date {{ date('d-m-Y H:i') }}
Total Boxes Packed {{ sizeof($box_counts) }}
Total Pcs Packed {{$totals['pcs'] }}

Transfer Order Line Items

@foreach($transferOrder->transferOrderLines as $line) @endforeach
Barcode Description Size Style Colour Codein Expected Qty Qty Counted Source Box Destination Box Counted by Is Complete
{{ $line->item->barcode }} {{ $line->item->description }} {{ $line->item->size }} {{ $line->item->style }} {{ $line->item->colour }} {{ $line->item->codein }} {{ $line->qty }} {{ $line->qty_counted }} {{ $line->source_box_name }} {{ $line->destination_box_name }} {{ $line->updatedBy->name ?? "" }} {{ $line->is_complete ? 'Yes' : 'No' }}

Box Counts Summary

@foreach($box_counts as $box_name => $counted_qty) @endforeach
Box Name Total Qty Counted
{{ $box_name }} {{ $counted_qty }}
Total {{ $totals['pcs'] }}