@include('purchase::partials.styles') @if($errors->any())
@endif
@csrf @method('PUT')
Purchase Order
Receipt Details
Items
{{ $grn->items->count() }} Items
@foreach($grn->items as $idx => $item) @endforeach
Product Ordered Received Accepted Rejected Lot/Batch
{{ $item->product->name ?? 'N/A' }} SKU: {{ $item->product->sku ?? '-' }}
{{ number_format($item->ordered_qty, 2) }} received_qty) }}" min="0" step="0.01" data-idx="{{ $idx }}"> accepted_qty) }}" min="0" step="0.01" data-idx="{{ $idx }}"> rejected_qty) }}" min="0" step="0.01" data-idx="{{ $idx }}" readonly> @if($item->product && $item->product->is_batch_managed)
lot_no) }}">
batch_no) }}">
manufacturing_date?->format('Y-m-d')) }}">
expiry_date?->format('Y-m-d')) }}">
@else No batch tracking @endif
Notes
Summary
Total Items {{ $grn->items->count() }}
Total Received {{ number_format($grn->total_qty, 2) }}
Total Accepted {{ number_format($grn->accepted_qty, 2) }}
Total Rejected {{ number_format($grn->rejected_qty, 2) }}
Cancel