@include('pdf.partials.styles_despachos')
{{ $empresa->address }}
Pedidos: {{ $empresa->phone }}
{{ $empresa->email }}
| NÚMERO ORDEN DESPACHO: | {{ $venta->serie_orden }} | CLIENTE: | {{ $venta->cliente->razon_social }} |
| FECHA DE REGISTRO: | {{ $venta->created_at->format('d/m/Y h:i:s A') }} | FECHA DEL DESPACHO: | {{ \Carbon\Carbon::parse($venta->fecha_despacho)->format('d/m/Y') }} |
| COMENTARIO: | {{ $venta->comentario }} | ||
| ID | Cantidad Pollos | Peso Neto | Motivo |
|---|---|---|---|
| {{ $item->id }} | {{ $item->cantidad }} | {{ number_format($item->peso_neto, 2) }} kg | {{ $item->motivo }} |
| POLLOS: | {{ number_format($venta->descuento_pollos, 0) }} | PESO: | {{ number_format($venta->descuento_peso, 2) }} kg |
| # | Producto | # Aves | P.Bruto (kg) | # Jabas | Tara (kg) | P.Neto (kg) | P.Promedio (kg) |
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $detalle->presentacion_pollo_descripcion }} / {{ $detalle->tipo_pollo_descripcion }} | {{ number_format($detalle->cantidad_pollos, 0) }} | {{ number_format($detalle->peso_bruto, 2) }} | {{ number_format($detalle->cantidad_jabas, 0) }} | {{ number_format($detalle->tara, 2) }} | {{ number_format($detalle->peso_neto, 2) }} | {{ number_format($detalle->peso_promedio, 2) }} |
| TOTAL: | {{ number_format($venta->cantidad_pollos, 0) }} | {{ number_format($venta->peso_total_bruto, 2) }} | {{ number_format($venta->cantidad_jabas, 0) }} | {{ number_format($venta->tara, 2) }} | {{ number_format($venta->peso_total_neto, 2) }} | @if($venta->cantidad_pollos > 0) {{ number_format($venta->peso_total_neto / $venta->cantidad_pollos, 2) }} @else - @endif | |