@if (session('message')) @endif

Update Shipment Balance

@csrf
Job No Buyer {{ $basic_info->buyer }} Style {{ $basic_info->style }}
PO {{ $basic_info->po }} Department {{ $basic_info->department }} Item {{ $basic_info->item }}
Destination {{ $basic_info->destination }} Order Quantity {{ $basic_info->order_quantity }} Shipment Quantity
Ex Factory Date Unite Price Shipment Value
@foreach ($color_sizes_qties as $color) {{-- @dd($color) --}} @endforeach
Color Size Sewing Quantity Shipment Quantity
@php $total_sewing_qty = 0; $sewing_qty = $old_shipments_entries ->where('job_id', $color->job_id) ->sum('shipped_qty'); if ($sewing_qty > 0) { $total_sewing_qty = $sewing_qty; } else { $total_sewing_qty = 0; } $remain_qty = $color->total_sewing_balance - $total_sewing_qty; @endphp
{{-- $table->unsignedBigInteger('')->nullable(); $table->string('job_no')->nullable(); $table->decimal('', 8, 2)->nullable(); $table->date('')->nullable(); $table->decimal('shipped_value', 8, 2)->nullable(); $table->decimal('excess_short_shipment_qty')->nullable(); $table->decimal('excess_short_shipment_value', 8, 2)->nullable(); $table->string('delivery_status')->nullable(); --}}
Cancel