@extends('layouts.app') @section('content') @extends('ventas.menu')

Orden Producción

Anular


@foreach ($ops as $op) @endforeach
OP Fecha Cliente Cantidad Unidades Producto Ejecutivo Fecha Entrega Cotización Estado Acción
{{$op->id}} {{date("d/m/Y h:i:s", strtotime($op->created_at))}} {{$op->cliente->nombre??'Inventario'}} {{$op->cantidad}} {{$op->producto->medida->nombre}} {{$op->producto->nombre}} @if($op->id_cotizacion_producto==999999) Inventario @else {{$op->cliente->info_ejecutivo->name??''}} @endif @if($op->fecha_entrega) {{date("d/m/Y", strtotime($op->updated_at))}} @endif @if($op->id_cotizacion_producto!=999999) {{$op->id_cotizacion_producto}} @endif @if ($op->status==1) Pendiente autorizar @endif @if ($op->status==2) Autorizada @endif @if ($op->status==3) Proceso @endif @if ($op->status==4) Terminada @endif @if ($op->status==5) Facturación @endif @if ($op->status==99) Anulado @endif @if ($op->status==1)
@endif @if ($op->status==2)
Ver @endif @if ($op->status==3) Ver @endif @if ($op->status==4) Ver @endif
@endsection