Inventory Adjustments

Manage stock adjustments and corrections

View Items

Total Adjustments

{{ $stats['total'] }}

Pending

{{ $stats['pending'] }}

Approved

{{ $stats['approved'] }}

Value Impact

{{ currency($stats['total_value']) }}

Clear
@if($adjustments->count() > 0)
@foreach($adjustments as $adjustment) @endforeach
Adjustment # Item Type Change Reason Status Actions
{{ $adjustment->adjustment_number }}
{{ $adjustment->adjustment_date->format('M d, Y') }}
{{ $adjustment->inventoryItem->name }}
{{ $adjustment->inventoryItem->unit->abbreviation ?? '' }}
@php $color = $adjustment->type_color; @endphp {{ $adjustment->type_label }}
{{ $adjustment->isIncrease() ? '+' : '' }}{{ number_format($adjustment->quantity_change, 2) }}
{{ number_format($adjustment->quantity_before, 2) }} → {{ number_format($adjustment->quantity_after, 2) }}
{{ $adjustment->reason }}
@php $statusColor = $adjustment->status_color; @endphp {{ $adjustment->status_label }}
@if($adjustment->status === 'pending') @endif @if($adjustment->status !== 'approved') @endif
@if($adjustments->hasPages())
{{ $adjustments->links() }}
@endif @else

No adjustments

Get started by creating a new inventory adjustment.

@endif

Create Inventory Adjustment

Adjust stock levels with proper documentation

Current Stock:

Positive for increase, negative for decrease

$

Preview

Current:
After:
Warning: This will result in negative stock!
@push('scripts') @endpush