@extends('layouts.supervisor') @section('title', 'Persetujuan Produksi - Supervisor') @section('content') @php $activeTab = request()->get('tab', 'planning'); @endphp
Review dan setujui planning & penyelesaian produksi dari teknisi
Terdapat planning yang sudah menunggu persetujuan lebih dari 24 jam. Mohon segera ditinjau.
Terdapat produksi yang sudah melewati estimasi waktu selesai. Mohon ditinjau.
| ID | Produk | Pesanan | Teknisi | Total Biaya | Diajukan | Aksi |
|---|---|---|---|---|---|---|
|
#{{ $production->id }}
@if($isOverdue)
TERLAMBAT
@endif
|
{{ Str::limit($production->product->product_title ?? 'N/A', 30) }}
{{ $orderQty }} unit
|
#{{ $production->order->id ?? 'N/A' }}
{{ Str::limit($production->order->customer_name ?? 'N/A', 15) }}
|
{{ Str::limit($production->teknisi->name ?? 'N/A', 18) }}
|
Rp {{ number_format($actualTotal, 0, ',', '.') }}
{{ $production->productionMaterials->count() + $production->productionSpareparts->count() }} item
|
{{ $production->submitted_at?->format('d/m/Y') ?? '-' }}
@if($production->submitted_at)
{{ $production->submitted_at->diffForHumans() }}
@endif
|
Semua planning produksi sudah diproses
| ID | Produk | Pesanan | Teknisi | Total Biaya | Selesai | Aksi |
|---|---|---|---|---|---|---|
| #{{ $production->id }} |
{{ Str::limit($production->product->product_title ?? 'N/A', 30) }}
{{ $orderQty2 }} unit
|
#{{ $production->order->id ?? 'N/A' }}
{{ Str::limit($production->order->customer_name ?? 'N/A', 15) }}
|
{{ Str::limit($production->teknisi->name ?? 'N/A', 18) }}
|
Rp {{ number_format($actualTotal2, 0, ',', '.') }}
@if($laborTotal2 > 0)
Upah: Rp {{ number_format($laborTotal2, 0, ',', '.') }}
@endif
|
{{ $production->completed_at?->format('d/m/Y') ?? '-' }}
@if($production->completed_at)
{{ $production->completed_at->diffForHumans() }}
@endif
|
Semua penyelesaian produksi sudah diproses