@extends('layouts.app') @section('content')
{{ __('TODAS LAS OPERACIONES REGISTRADAS') }}
CIERRE: {{ $totalCierre }} PROVISIONAL: {{ $totalProvisional }} SIN CIERRE: {{ $totalSinCierre }}
{{ __('CREAR NUEVO LIQUIDACIONES') }}
@if (count($liquidaciones) > 0) @foreach ($liquidaciones as $liquidacion) @endforeach @else @endif
{{ __('ID') }} {{ __('MUESTRA') }} {{ __('CLIENTE') }} {{ __('EMPRESA') }} {{ __('LOTE') }} {{ __('PESO') }} {{ __('PRODUCTO') }} {{ __('ESTADO') }} {{ __('TICKET') }} {{ __('TOTAL') }} {{ __('NOTAS') }} {{ __('CREADO POR') }} {{ __('CIERRE FINAL') }} {{ __('ACCIONES') }}
{{ $liquidacion->id }} {{ $liquidacion->muestra->codigo }} {{ $liquidacion->cliente->datos_cliente }} {{ $liquidacion->cliente->razon_social }} {{ $liquidacion->lote }} {{ $liquidacion->peso }} {{ $liquidacion->producto }} {{ $liquidacion->estado ?? 'SIN CIERRE' }} {{ $liquidacion->NroSalida }} {{ $liquidacion->total }} {{ $liquidacion->comentario }} {{ $liquidacion->creator->name ?? 'N/A' }} ({{ $liquidacion->created_at->format('d/m/Y - H:i:s') }}) {{ $liquidacion->lastEditor->name ?? 'N/A'}} ({{ $liquidacion->updated_at->format('d/m/Y - H:i:s') }}) {{ __('VER') }} @if ($liquidacion->estado !== 'CIERRE' && $liquidacion->estado !== 'PROVISIONAL')
@csrf
@endif @can('update', $liquidacion) {{ __('EDITAR') }} @endcan {{ __('IMPRIMIR') }}
@csrf @method('DELETE')
{{ __('No hay datos disponibles') }}
@push('js') @endpush @endsection