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

Salidas o Despachos



@foreach ($salidasAlmacen as $op) @if ($op->op->status != 5) @endif @endforeach @foreach ($salidasAlmacenInventario as $op) @endforeach
OP Cliente Producto Demanda original Faltante a Producir Existencia Despachos Estatus Acción
{{ $op->id_op }} {{ $op->cliente->nombre ?? 'Inventario' }} {{ $op->producto->nombre . ' ' . $op?->op?->cotizaciones_p?->descripcion }} {{ $op->op->cantidad }} {{ $op->producto->medida->nombre }} @if ($op->op->cantidad - $op->total_entrega < 0) 0 @else {{ $op->op->cantidad - $op->total_entrega }} {{ $op->producto->medida->nombre }} @endif {{ $op->total_entrega - $op->op->cantidad_entregada }} {{ $op->producto->medida->nombre }} {{ $op->op->cantidad_entregada }} {{ $op->producto->medida->nombre }} @if ($op->op->status == 5) Terminada @else Pendiente @endif @if ($op->op->status != 5) @endif
{{ $op->id }} {{ $op->cliente->nombre ?? 'Inventario' }} {{ $op->producto->nombre }} {{ $op->cantidad }} {{ $op->producto->medida->nombre }} 0 {{ $op->producto->medida->nombre }} {{ $op->cantidad }} {{ $op->producto->medida->nombre }} 0 {{ $op->producto->medida->nombre }} INVENTARIO {{-- LINK A COTIZACION DE SALIDA --}}
@endsection