@extends('layouts.admin-simple') @section('title','New Indirect FOC Return') @section('page-title')

New Indirect Goods Return to FOC

@endsection @section('content')
All accepted indirect goods returns go to Indirect FOC Inventory only. Normal warehouse inventory will not be increased.
@if(request('project_id') && request('division_id'))
@csrf
@forelse($eligible as $allocation) @empty@endforelse
MRItemInvoice / BatchOutstandingReturn QtyConditionReason
{{ $allocation->fulfillment->request?->request_number }}{{ $allocation->fulfillment->requestItem?->indirectGood?->ig_code }}
{{ $allocation->fulfillment->requestItem?->indirectGood?->ig_description }}
{{ $allocation->invoice_number ?? '-' }} / {{ $allocation->batch_number ?? '-' }}{{ number_format($allocation->quantity_outstanding,2) }}
No returnable indirect goods found for this project and division.
@if($eligible->isNotEmpty())@endif
@endif @endsection