@extends('iframe') @section('contenido')

Detalle de producto Sistema Inventario Platino

Nombre:

{{ $producto->nombre }}

Descripción:

{{ $producto->descripcion }}

Marca:

{{ $producto->marnombre }}

Presentación:

{{ $producto->prenombre }}

Gramaje:

{{ number_format($producto->gramaje, 2, '.', '') }}

@if($actividad != "" && $actividad != "%%") @else @endif

Detalle de movimientos

@foreach($detalleMovimiento as $item) @endforeach
Fecha Campaña Bodega Tipo de movimiento Destino Motivo traslado Cantidad Responsable Ver guía
{{ $item->created_at }} {{ $item->actnombre }} {{ $item->bodnombre }} @if($item->tipomovimiento == 1)Ingreso a bodega @else Despacho de bodega @endif {{ $item->dest_punto_llegada }} @if($item->motivo_traslado == 1) Venta @elseif($item->motivo_traslado == 2) Consignación @elseif($item->motivo_traslado == 3) Devolución @elseif($item->motivo_traslado == 4) Ingreso @elseif($item->motivo_traslado == 5) Egreso @endif @if(($item->tipomovimiento == 2 && ($item->motivo_traslado == 1 || $item->motivo_traslado == 2)) || ($item->tipomovimiento == 1 && $item->motivo_traslado == 5))- @endif{{ number_format($item->cantidad, 2, '.', '') }} {{ $item->ori_razon_social }} Ver guía
{!! $detalleMovimiento->setPath('')->appends(Request::except('page'))->render() !!}
@if(count($detalleTransferencia) > 0)

Detalle de transferencias

@foreach($detalleTransferencia as $item) @if($item->cantidad != 0) @endif @endforeach
Fecha Bodega Tipo de movimiento Cantidad Ver guía
{{ $item->created_at }} {{ $item->bodnombre }} Transferencia {{ number_format($item->cantidad, 2, '.', '') }} Ver guía
{!! $detalleMovimiento->setPath('')->appends(Request::except('page'))->render() !!}
@endif
@endsection