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

Historial de Despachos



@foreach ($salidasAlmacen as $op) @if($op->op->status!=5) @endif @endforeach @foreach ($salidasAlmacenInventario as $op) @endforeach
OP Fecha Cliente Producto Demanda original Faltante a Producir Existencia Despachos Estatus Acción
{{$op->id_op}} {{ date_format($op->created_at,"d/m/Y") }} {{$op->cliente->nombre??'Inventario'}} {{$op->producto->nombre}} {{$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}} {{ date_format($op->created_at,"d/m/Y") }} {{$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
@endsection