@extends('layouts.location') @section('title', 'Replenishment View') @section('page-title', 'Replenishment View') @section('content')

Replenishment Data

Back Export CSV
@forelse($data as $row) @php $pcs = (int) ($row->required_qty ?? 0); $packs = (int) ($row->moq ?? 0); @endphp @if($pcs === 0 && $packs === 0) @continue @endif @empty @endforelse
Rep ID Location ID SKU Item Name Overflow Location Pick Location Total Stock Qty Min Qty Max Qty SO Required Qty Required Qty (Pcs) Required Qty (Packs) Rep Status Created At
{{ $row->rep_id }} {{ $row->location_id }} {{ $row->sku }} {{ $row->item_name }} {{ $row->transfer_location }} {{ $row->rack }} {{ (int) ($row->total_transfer_qty ?? 0) }} {{ $row->min_qty }} {{ $row->max_qty }} {{ $row->so_required_qty }} {{ $row->required_qty }} {{ $row->moq ?? '' }} {{ $row->rep_status }} {{ \Carbon\Carbon::parse($row->created_at)->format('Y-m-d H:i') }}
No SKUs currently require replenishment (SO required quantity does not exceed available stock as per replenishment conditions).
@endsection