Loading split drop form...
Review the order quantities and existing drops.
| Size | Order Qty | Shipped | Remaining |
|---|---|---|---|
| {{ $orderData['size_name'] }} | {{ $orderData['qty'] }} | {{ $shippedQty }} | {{ $remaining }} |
| Drop ID | ExFty | Status | Total Qty | Total Shipped | To Ship |
|---|---|---|---|---|---|
| {{ $existingDrop['id'] }} | {{ $existingDrop['exfty'] ? date('d-M-y', strtotime($existingDrop['exfty'])) : '—' }} | @if($existingDrop['shipped']) Shipped @else Unshipped @endif | {{ $existingDrop['total_pieces'] }} | {{ $totalShipped }} | {{ $remaining }} |
Configure the new drop date and set quantities.
Set quantities for the new drop. Total quantities should equal order quantities.
@if($this->canShowTakeFromExistingCheckbox())| Size | Order Qty | @foreach($existingDrops as $dropIndex => $existingDrop)
{{ $existingDrop['exfty'] ? date('d-M-y', strtotime($existingDrop['exfty'])) : 'No date' }}
@if($existingDrop['shipped'])
(Shipped) @endif |
@endforeach
@for($i = 0; $i < $newDropCount; $i++)
{{ $newDropDates[$i] ? date('d-M-y', strtotime($newDropDates[$i])) : 'Date not set' }} | @endforAllocated | Totals |
|---|---|---|---|---|---|
| {{ $orderData['size_name'] }} | {{ $orderData['qty'] }} | @foreach($existingDrops as $dropIndex => $existingDrop) @php $dropQty = $existingDrop['quantities'][$sizeId] ?? 0; $shippedQty = $existingDrop['shipped_quantities'][$sizeId] ?? 0; @endphp
@if(!$existingDrop['shipped'] && $this->canEditExistingDrops())
Shipped: {{ $shippedQty }}
@else
Due: {{ $dropQty }}
@if($shippedQty > 0)
@endif
Shipped: {{ $shippedQty }} @endif |
@endforeach
@for($i = 0; $i < $newDropCount; $i++)
@endfor | {{ $totalAllocated }} |
To Ship: {{ $remaining }}
Ordered: {{ $orderData['qty'] }}
Shipped: {{ $totalShipped }}
Drop Orders: {{ $totalAllocated }}
|
Review the complete drops configuration and quantities.
| Size | Order Qty | Shipped | New Drop Qty | Totals |
|---|---|---|---|---|
| {{ $data['size_name'] }} | {{ $data['order_qty'] }} | {{ $data['total_shipped'] }} | {{ $data['total_new_drop_qty'] }} | @if($isBalanced) Balanced @else Unbalanced @endif |