@extends('dashboard.body.main') @section('container')
| Ranking | Producto | Unidades Vendidas | Recaudación ($) |
|---|---|---|---|
| #{{ $loop->iteration }} | {{ $item->product->product_name ?? 'Producto eliminado' }} | {{ $item->total_qty }} uds | ${{ number_format($item->total_revenue, 0, ',', '.') }} |
| Sin transacciones registradas en el período. | |||
| Ranking | Producto | Unidades Vendidas | Recaudación ($) |
|---|---|---|---|
| #{{ $loop->iteration }} | {{ $item->custom_product_name }} | {{ $item->total_qty }} uds | ${{ number_format($item->total_revenue, 0, ',', '.') }} |
| Factura / N° Ticket | Fecha y Hora | Cliente | Cajero | Método de Pago | Monto Cobrado | Estado | Ticket |
|---|---|---|---|---|---|---|---|
| #{{ $order->invoice_no }} | {{ Carbon\Carbon::parse($order->order_date)->format('d/m/Y') }} {{ $order->created_at ? $order->created_at->format('H:i') : '' }} | {{ $order->customer->name ?? 'Cliente General' }} | {{ $order->user->name ?? 'Sistema' }} | {{ $order->payment_status == 'HandCash' ? 'Efectivo' : ($order->payment_status == 'Tarjeta' ? 'Tarjeta' : ($order->payment_status == 'Transferencia' ? 'Transferencia' : $order->payment_status)) }} | ${{ number_format($order->total, 0, ',', '.') }} | Pagado | |
| No se registran transacciones de venta en los filtros seleccionados. | |||||||
| ID Turno | Cajero | Apertura | Cierre | Monto Inicial | Venta Efectivo | Venta Tarjeta | Venta Transf. | Esperado | Contado Real | Diferencia | Estado | Reporte |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| #{{ str_pad($shift->id, 6, '0', STR_PAD_LEFT) }} | {{ $shift->user->name }} | {{ $shift->opened_at->format('d/m/Y H:i') }} | {{ $shift->closed_at ? $shift->closed_at->format('d/m/Y H:i') : '-' }} | ${{ number_format($shift->opening_balance, 0, ',', '.') }} | ${{ number_format($shift->expected_cash, 0, ',', '.') }} | ${{ number_format($shift->expected_card, 0, ',', '.') }} | ${{ number_format($shift->expected_transfer, 0, ',', '.') }} | ${{ number_format($expectedTotalCash, 0, ',', '.') }} | ${{ number_format($shift->actual_cash, 0, ',', '.') }} | @if($shift->discrepancy > 0)+@endif${{ number_format($shift->discrepancy, 0, ',', '.') }} | @if($shift->status === 'open') Abierta @else Cerrada @endif | @if($shift->status === 'closed') Imprimir Z @else - @endif |
| No se registran arqueos o cierres de caja en el período. | ||||||||||||