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 |
|---|---|---|---|---|---|
| {{ $drop['id'] }} | {{ $drop['exfty'] }} | @if($drop['complete']) Shipped @else Unshipped @endif | {{ $drop['total_pieces'] }} | {{ $totalShipped }} | {{ $remaining }} |
Configure the new drop date and set quantities.
Set quantities for the new drop. Total quantities should equal order quantities.
@endif @if($this->canShowTakeFromExistingCheckbox())| Size | Order Qty | @foreach($existingDrops as $dropIndex => $drop)
{{ date('d-M-y', strtotime($drop['exfty'])) }}
@if($drop['complete'])
(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 => $drop) @php $dropQty = $drop['quantities'][$sizeId] ?? 0; $shippedQty = $drop['shipped_quantities'][$sizeId] ?? 0; @endphp
@if(!$drop['complete'] && $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 }}
@if($createNewOrder && $remaining < 0)
Exceeds order qty
@endif
|
Compare the original order with the new order to be created.
| Size | Order Qty | Shipped | New Drop Qty | Totals |
|---|---|---|---|---|
| {{ $data['size_name'] }} | {{ $data['order_qty'] }} | {{ $data['total_shipped'] }} | {{ $movingToNewOrder }} | @if($isBalanced) Balanced @else Unbalanced @endif |
You are about to create a new order with the following details:
PO: {{ $orderSummary['original_order']['po'] }}
Customer: {{ $orderSummary['original_order']['customer'] }}
Quantities:
Drops:
PO: {{ $orderSummary['new_order']['po'] }}
Customer: {{ $orderSummary['original_order']['customer'] }}
Quantities:
Drops:
You are about to split {{ $finalConfirmation['total_new_order_qty'] }} units ({{ $finalConfirmation['split_percentage'] }}%) from the original order into a new order.
The original order will retain {{ $finalConfirmation['remaining_in_original'] }} units.
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 |