NOMQ | : | @if($workOrder->po_customer) {{ $workOrder->po_customer->quotation ? $workOrder->po_customer->quotation->code ?? "-" : "-" }} @else - @endif |
TANGG | : | {{ now()->parse($workOrder->date)->format("d") }} |
Customer | @if($workOrder->po_customer) {{ $workOrder->po_customer->customer ? $workOrder->po_customer->customer->name ?? "-" : "-" }} @else - @endif |
Nomer PO | {{ $workOrder->po_customer ? $workOrder->po_customer->code ?? "-" : "-" }} |
Kode Produksi | {{ $workOrder->code }} |
No | Item | Qty | Keterangan | Status | |
{{ $no++ }} | {{ $item->product ? $item->product->name ?? "-" : "-" }} | {{ number_format($item->quantity ?? 0,2,',','.') }} ({{ $item->product ? $item->product->selling_unit ?? "-" : "-" }}) | {{ $item->description ?? "-"}} | {{ $item->status }} | |
TOTAL PRODUKSI | @if(count($unit_selling_unit) > 1)
@foreach($unit_selling_unit as $key => $item)
{{ number_format($total_selling_unit[$key] ?? 0,2,',','.') }}
({{ $item }}) @endforeach {{ number_format($total_qty ?? 0,2,',','.') }} (Total) |
@else
{{ number_format($total_qty ?? 0,2,',','.') }} | @endif|||
CATATAN | {{ $workOrder->description ?? "-"}} |