@if ($bodegaActual!=null)
@if ($ordenVenta!=null)
@endif
@if($ordenVentaDetalleId != null)
@php
$bodega = Help::usuarioBodegaActiva()->bodega ;
@endphp
{{ $ordenVentaDetalle->producto->producto }}
@if ($ordenVentaDetalle->combo_id != null)
{{ $ordenVentaDetalle->combo->combo }}
@endif
Disponibilidad en inventario en la bodega:
{{ $bodega->bodega }} / {{ $bodega->direccion }}
Cantidad restante:
{{ $ordenVentaDetalle->cantidad - $ordenVentaDetalle->cantidad_sacada }}
@if (count($inventario)>0)
# |
Localidad |
Cantidad |
@foreach ($inventario as $key=> $inv)
{{ $key+1 }} |
{{ $inv->locacion->ubicacion }} |
{{ $inv->cantidad }} |
@endforeach
@else
No hay disponibilidad en inventario
@endif
@endif
@if($barcode!=null)
@if($mensajeProductoInventario!="")
{{ $mensajeProductoInventario }}
@else
@endif
@endif
@else
No hay ordenes de venta que coincidan con la bodega actual de tu usuario.
@endif