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

Orden Producción



@foreach ($opsPendientesOk as $op) @endforeach @foreach ($ops as $op) @endforeach
Tipo Fecha Cliente Cantidad Unidades Producto Ejecutivo Fecha entrega Estado
{{$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}} {{$op->cliente->info_ejecutivo->name??'Inventario'}} @if($op->fecha_prevista) {{date("d/m/Y", strtotime($op->fecha_prevista))}} @endif Pendiente
{{$op->id}} {{date("d/m/Y h:i:s", strtotime($op->created_at))}} @if ($op->status==2) {{$op->cliente->nombre??'Inventario'}} @endif @if ($op->status==3) {{$op->cliente->nombre??'Inventario'}} @endif @if ($op->status==4) {{$op->cliente->nombre??'Inventario'}} @endif @if ($op->status==5) {{$op->cliente->nombre??'Inventario'}} @endif {{$op->cantidad}} {{$op->producto->medida->nombre}} {{$op->producto->nombre}} {{$op->cliente->info_ejecutivo->name??'Inventario'}} @if($op->fecha_entrega) {{date("d/m/Y", strtotime($op->fecha_entrega))}} @endif @if ($op->status==2) Autorizada @endif @if ($op->status==3) Proceso @endif @if ($op->status==4) Terminada @endif @if ($op->status==4) Facturación @endif @if ($op->status==5) Fabricación @endif
@endsection