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

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

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

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

@csrf @method('PUT')
@if($inventarioingreso->tipomoneda == 'DOLARES')
@endif
@stop @push('js') @endpush