@extends('admin.layout') @section('content')

{{ __('ORDEN DE COMPRA') }}
@if (count($inventarioingreso->productos) > 0) @foreach ($inventarioingreso->productos as $producto) @endforeach
{{ __('PRODUCTO DEL REQUERIMIENTO') }} {{ __('CANTIDAD') }} {{ __('PRECIO UNITARIO') }} {{ __('SUBTOTAL') }} {{ __('FECHA DE CREACIÓN') }} {{ __('GUIA DE INGRESO AL ALMACEN') }}
{{ $producto->nombre_producto }} {{ $producto->pivot->cantidad }} {{ $producto->pivot->precio }} {{ $producto->pivot->subtotal }} {{ $producto->pivot->created_at }} {{ $producto->pivot->guiaingresoalmacen }}
@endif

SUBTOTAL: {{ $inventarioingreso->subtotal }} {{ $inventarioingreso->tipomoneda }}

COSTO TOTAL: {{ $inventarioingreso->total }} {{ $inventarioingreso->tipomoneda }}

@if($inventarioingreso->tipomoneda == 'DOLARES')
@endif
@if (count($inventarioingreso->pagosacuenta) > 0) @foreach ($inventarioingreso->pagosacuenta as $pago) @endforeach
{{ __('FECHA DE PAGO O ADELANTO A CUENTA') }} {{ __('MONTO') }} {{ __('COMPROBANTE CORRELATIVO') }}
{{ $pago->fecha_pago }} {{ $pago->monto }} {{ $pago->comprobante_correlativo }}
@endif
@stop