@extends('layout') @section('content') @section('compras-active', 'active') @section('orden-compra-active', 'active')

REGISTRAR NUEVA ORDEN DE COMPRA

@include('compras.ordenes.modal_proveedor')
{{csrf_field()}}

Orden de compra

Registrar datos de la orden de compra:

@if ($errors->has('fecha_emision')) {{ $errors->first('fecha_emision') }} @endif
@if ($errors->has('fecha_entrega')) {{ $errors->first('fecha_entrega') }} @endif

{{--

Proveedor:

--}}
{{--
--}}
@if ($errors->has('condicion_id')) {{ $errors->first('condicion_id') }} @endif
@if ($errors->has('tipo_cambio')) {{ $errors->first('tipo_cambio') }} @endif
@if ($errors->has('igv')) {{ $errors->first('igv') }} @endif
@if ($errors->has('observacion')) {{ $errors->first('observacion') }} @endif

Seleccionar productos

@include('compras.ordenes.table-productos')

Detalle de la orden

@include('compras.ordenes.table-orden-detalles')
{{--

Detalle de la Orden de Compra


ACCIONES CANTIDAD PRODUCTO PRECIO TOTAL
Sub Total: 0.0
IGV : 0.0
TOTAL: 0.0
--}}
Los campos marcados con asterisco () son obligatorios.
Regresar
@include('compras.ordenes.modal') @stop @push('styles') @endpush @push('scripts') {{-- --}} @endpush