@extends('layouts.app') @section('title', 'Movimientos de Inventario') @section('content')

Movimientos de Inventario

Gestiona los movimientos de productos entre ubicaciones

Nuevo Movimiento
Total Movimientos
{{ $stats['total_movements'] }}
Pendientes
{{ $stats['pending_movements'] }}
En Progreso
{{ $stats['in_progress_movements'] }}
Completados
{{ $stats['completed_movements'] }}
Filtros
Limpiar
Lista de Movimientos
@forelse($movements as $movement) @empty @endforelse
Código Tipo Producto Desde Hacia Cantidad Estado Prioridad Creado por Fecha Acciones
{{ $movement->movement_code }} {{ $movement->movement_type_formatted }}
{{ $movement->product->name }}
{{ $movement->product->code }}
{{ $movement->from_location_formatted }} {{ $movement->to_location_formatted }} {{ $movement->quantity_formatted }} {!! $movement->status_badge !!} {!! $movement->priority_badge !!} {{ $movement->createdBy->name ?? 'N/A' }} {{ $movement->created_at->format('d/m/Y H:i') }}
@if($movement->canBeCancelled()) @endif @if($movement->canBeApproved())
@csrf
@endif @if($movement->canBeExecuted())
@csrf
@endif @if($movement->canBeCompleted())
@csrf
@endif @if($movement->canBeCancelled())
@csrf
@endif

No hay movimientos registrados

Crear Primer Movimiento
@if($movements->hasPages())
{{ $movements->appends(request()->query())->links() }}
@endif
@endsection @push('scripts') @endpush