@extends('adminlte::page') @section('title', config('app.name') . ' - Detalle de Venta') @section('content_header')
| # | Monto | Método de Pago | Banco | N° Operación | Fecha | Comprobantes | Comentario |
|---|---|---|---|---|---|---|---|
| {{ $pago->id }} | s/. {{ number_format($pago->monto, 2) }} | {{ $pago->metodo_pago->descripcion }} | {{ $pago->banco?->nombre ?? '-' }} | {{ $pago->num_operacion ?? '-' }} | {{ $pago->created_at->format('d/m/Y H:i') }} | @if ($pago->imagen) Ver @else - @endif | {{ $pago->comentario ?? '-' }} |
|
La venta aún no contiene pagos realizados |
|||||||
| Monto | Motivo | Fecha - Hora | Acción |
|---|---|---|---|
| s/. {{ number_format($adicional->monto, 2) }} | {{ $adicional->descripcion }} | {{ $adicional->fecha }} | @csrf Eliminar |
|
Esta venta no cuenta con adicionales |
|||
| Monto | Motivo | Fecha - Hora | Acción |
|---|---|---|---|
| s/. {{ number_format($descuento->monto_descuento, 2) }} | {{ $descuento->motivo_descuento }} | {{ $descuento->fecha_descuento }} | @csrf Eliminar |
|
Esta venta no cuenta con descuentos |
|||
| # | Presentación | Tipo | Cantidad | Peso Bruto | Cantidad Jabas | Tara | Peso Neto | Precio | Subtotal |
|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $detalle->presentacion_pollo->descripcion ?? 'N/A' }} | {{ $detalle->tipo_pollo->descripcion ?? 'N/A' }} | {{ number_format($detalle->cantidad_pollos, 0) }} | {{ number_format($detalle->peso_bruto, 2) }} kg | {{ number_format($detalle->cantidad_jabas, 0) }} | {{ number_format($detalle->tara, 2) }} kg | {{ number_format($detalle->peso_neto, 2) }} kg | s/. {{ number_format($detalle->precio, 2) }} | s/. {{ number_format($detalle->subtotal, 2) }} |
|
No hay detalles para esta venta |
|||||||||
| TOTAL DE LA VENTA: | {{ number_format($totalCantidadPollos, 0) }} | {{ number_format($totalPesoBruto, 2) }} kg | {{ number_format($totalCantidadJabas, 0) }} | {{ number_format($totalTara, 2) }} kg | {{ number_format($totalPesoNeto, 2) }} kg | - | s/. {{ number_format($totalSubtotal, 2) }} | ||
| DESCUENTOS: | {{ number_format($descuento_pollos_total ?? 0, 0) }} | - | - | - | {{ number_format($descuento_peso_total ?? 0, 2) }} kg | - | - | ||
| TOTAL CON DESCUENTOS: | {{ number_format($totalCantidadPollos - ($descuento_pollos_total ?? 0), 0) }} | {{ number_format($totalPesoBruto, 2) }} kg | {{ number_format($totalCantidadJabas, 0) }} | {{ number_format($totalTara, 2) }} kg | {{ number_format($totalPesoNeto - ($descuento_peso_total ?? 0), 2) }} kg | - | s/. {{ number_format($venta->monto_total, 2) }} | ||
Descuento Pollos: {{ number_format($orden->descuento_pollos ?? 0, 0) }}
Descuento Peso: {{ number_format($orden->descuento_peso ?? 0, 2) }} kg