FACTURAS DEL PROVEEDOR: ${{ number_format($registro->total_parte_1, 2, ',', '.') }} - {{$registro->moneda->simbolo}}{{ number_format($registro->total_parte_1/$registro->cotizacion, 2, ',', '.') }}

-------------------------------------------------------------------------------------------------------------------

DESPACHOS DE IMPORTACIONES: ${{ number_format($registro->total_parte_2, 2, ',', '.') }} - {{$registro->moneda->simbolo}}{{ number_format($registro->total_parte_2/$registro->cotizacion, 2, ',', '.') }}

-------------------------------------------------------------------------------------------------------------------

FACTURAS DE LOGISTICA: ${{ number_format($registro->total_parte_3, 2, ',', '.') }} - {{$registro->moneda->simbolo}}{{ number_format($registro->total_parte_3/$registro->cotizacion, 2, ',', '.') }}

-------------------------------------------------------------------------------------------------------------------

@if($registro->cierres->isNotEmpty())
CIERRE:
@foreach($registro->cierres as $cierre) @if($cierre->producto) @else @endif @endforeach
Producto Moneda Costo Anterior Cantidades Precio x Cantidad Ratio Incremento Por Unidad Incremento Por Cantidad Costo Nuevo
{{ $cierre->producto->descripcion }} {{ $cierre->producto->moneda->descripcion }}{{ $cierre->dc_orden_detail->descripcion }} {{ $cierre->dc_orden->moneda->descripcion }}{{ number_format($cierre->costo_antes, 2) }} {{ $cierre->cantidades }} {{ $cierre->precio_x_cantidad }} {{ $cierre->ratio }} {{ $cierre->incremento }} {{ $cierre->incremento_x_cantidad }} {{ number_format($cierre->costo_despues, 2) }}
@else

AUN NO FUE CERRADO EL DESPACHO

@endif