{{ $adjustment->adjustment_number }}

Inventory Adjustment Details

@php $statusColor = $adjustment->status_color; @endphp {{ $adjustment->status_label }}

Adjustment Information

{{ $adjustment->inventoryItem->name }}

{{ $adjustment->inventoryItem->sku ?? 'No SKU' }}

@php $typeColor = $adjustment->type_color; @endphp

{{ $adjustment->type_label }}

{{ $adjustment->inventoryLocation->name ?? 'No specific location' }}

{{ $adjustment->adjustment_date->format('M d, Y h:i A') }}

Quantity Change

Before

{{ number_format($adjustment->quantity_before, 2) }}

{{ $adjustment->inventoryItem->unit->abbreviation ?? '' }}

{{ $adjustment->isIncrease() ? '+' : '' }}{{ number_format($adjustment->quantity_change, 2) }}

After

{{ number_format($adjustment->quantity_after, 2) }}

{{ $adjustment->inventoryItem->unit->abbreviation ?? '' }}

@if($adjustment->total_value != 0)
Value Impact: {{ currency(abs($adjustment->total_value)) }} ({{ $adjustment->isIncrease() ? '+' : '-' }})
@endif

Reason & Notes

{{ $adjustment->reason }}

@if($adjustment->notes)

{{ $adjustment->notes }}

@endif

Activity Timeline

Created

by {{ $adjustment->adjuster->name ?? 'Unknown' }}

{{ $adjustment->created_at->format('M d, Y h:i A') }}

@if($adjustment->status !== 'pending')
@if($adjustment->status === 'approved') @else @endif

{{ ucfirst($adjustment->status) }}

by {{ $adjustment->approver->name ?? 'Unknown' }}

{{ $adjustment->updated_at->format('M d, Y h:i A') }}

@endif
@if($adjustment->status === 'pending')

This adjustment is pending approval. Approving will update inventory levels.

@endif
@push('scripts') @endpush