| No. | Kode Produk | Nama Produk | Kategori | Qty Diminta | @if($mutation->status->value !== 'sent')Qty Diterima | Catatan | @endif
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $detail->product->code ?? '-' }} | {{ $detail->product->name ?? '-' }} | {{ $detail->product->category->name ?? '-' }} | {{ number_format($detail->quantity_requested, 2) }} | @if($mutation->status->value !== 'sent')
{{ $detail->quantity_approved ? number_format($detail->quantity_approved, 2) : '0.00' }}
@if($detail->quantity_approved && $detail->quantity_approved < $detail->quantity_requested)
(Kurang {{ number_format($detail->quantity_requested - $detail->quantity_approved, 2) }}) @endif |
{{ $detail->notes ?: '-' }} | @endif
| TOTAL | {{ number_format($totalRequested, 2) }} | @if($mutation->status->value !== 'sent'){{ number_format($totalApproved, 2) }} | - | @endif|||