Production List
Create Production| Production # | Product | BOM | Planned Qty | Produced | Progress | Priority | Status | Dates | Actions |
|---|---|---|---|---|---|---|---|---|---|
|
{{ $order->production_order_number }}
@if($order->schedule)
{{ $order->schedule->schedule_code }} @endif |
{{ $order->product->name ?? 'N/A' }}
SKU: {{ $order->product->sku ?? 'N/A' }} |
{{ $order->billOfMaterial->bom_code ?? 'N/A' }} |
{{ number_format($order->planned_quantity, 2) }}
{{ $order->unit_of_measure }} |
{{ number_format($order->produced_quantity, 2) }}
{{ $order->unit_of_measure }} |
{{ number_format($order->progress_percentage, 1) }}% | {{ $order->priority_label }} | {{ $order->status_label }} |
{{ $order->planned_start_date ? $order->planned_start_date->format('d M Y') : 'N/A' }}
@if($order->planned_end_date)
{{ $order->planned_end_date->format('d M Y') }}
@endif
@if($order->planned_end_date && $order->planned_end_date < now() && $order->status != 'completed' && $order->status != 'cancelled')
Overdue
@endif
|
|