@if ($box->source == 'created') {{-- Box is created --}}
| Barcode | Description | Style | Colour | Size | Counted | Counted By | Date |
|---|---|---|---|---|---|---|---|
| {{ $record->receive_order_line->barcode}} | {{ $record->receive_order_line->description}} | {{ $record->receive_order_line->style ?? 'N/A' }} | {{ $record->receive_order_line->colour ?? 'N/A' }} | {{ $record->receive_order_line->size ?? 'N/A' }} | {{ $line->qty ?? 0 }} | {{$line->createdBy->name ?? 'N/A' }} | {{$line->created_at->format(config('app.datetime_format')) ?? 'N/A' }} |
| {{ $line->receive_order_line->barcode}} | {{ $line->description}} | {{ $line->style}} | {{ $line->colour }} | {{ $line->size}} | {{ $line->codein}} | {{ $line->qty ?? 0}} |
| Barcode | Description | Style | Colour | Size | Counted | Counted By | Updated at |
|---|---|---|---|---|---|---|---|
| {{ $line->barcode }} | {{ $line->description }} | {{ $line->style }} | {{ $line->colour }} | {{ $line->size }} | {{ $line->counted_qty ?? 0 }} | {{ $line->countedBy->name ?? "" }} | {{ $line->updated_at != null ? $line->updated_at->format(config('app.datetime_format')) : "" }} |
| Barcode | Description | Style | Colour | Size | Counted | Ordered | Counted By | Updated at |
|---|---|---|---|---|---|---|---|---|
| {{ $line->barcode }} | {{ $line->description }} | {{ $line->style }} | {{ $line->colour }} | {{ $line->size }} | {{ $line->counted_qty ?? 0 }} | {{ $line->qty ?? 0 }} | {{ $line->countedBy->name ?? "" }} | {{ $line->updated_at != null ? $line->updated_at->format(config('app.datetime_format')) : "" }} |
| Barcode | Description | Style | Colour | Size | Counted | Counted By | Updated at |
|---|---|---|---|---|---|---|---|
| {{ $line->barcode }} | {{ $line->description }} | {{ $line->style }} | {{ $line->colour }} | {{ $line->size }} | {{ $line->counted_qty ?? 0 }} | {{ $line->countedBy->name ?? "" }} | {{ $line->updated_at != null ? $line->updated_at->format(config('app.datetime_format')) : "" }} |
| Barcode | Description | Warehouse | Destination Box | Allocated Qty |
|---|---|---|---|---|
| {{ $allocation['barcode'] }} | {{ $allocation['description'] }} | {{ $allocation['destination_warehouse'] ?? 'N/A' }} | {{ $allocation['destination_box_name'] ?? 'N/A' }} | {{ $allocation['qty'] ?? 0 }} |
| Unallocated | {{ $box->noOfPcs - $totalAllocated }} Pcs | |||
| Barcode | Description | Counted Qty | Allocated Qty | Unallocated Qty |
|---|---|---|---|---|
| {{ $item['barcode'] }} | {{ $item['description'] }} | {{ $item['counted_qty'] }} | {{ $item['allocated_qty'] }} | {{ $item['unallocated_qty'] }} |