SKU: {{ $product->sku }} | EAN: {{ $product->ean }}
Estoque Atual: {{ $product->current_stock }}
| Data/Hora | Tipo | Quantidade | Custo Unitário | Custo Total | Estoque Após | Motivo | Usuário | Referência |
|---|---|---|---|---|---|---|---|---|
|
{{ $movement->created_at->format('d/m/Y') }}
{{ $movement->created_at->format('H:i:s') }}
|
@if($movement->type === 'entrada') Entrada @elseif($movement->type === 'saida') Saída @else Ajuste @endif | @if($movement->type === 'entrada') +{{ $movement->quantity }} @elseif($movement->type === 'saida') -{{ $movement->quantity }} @else {{ $movement->quantity > 0 ? '+' : '' }}{{ $movement->quantity }} @endif | R$ {{ number_format($movement->unit_cost ?? 0, 2, ',', '.') }} | R$ {{ number_format($movement->total_cost ?? 0, 2, ',', '.') }} | {{ $movement->stock_after ?? '-' }} |
{{ $movement->reason }}
@if($movement->notes)
{{ $movement->notes }}
@endif
|
{{ $movement->user->name ?? 'Sistema' }} | {{ $movement->reference ?? '-' }} |
Este produto ainda não possui histórico de movimentações de estoque.