@section('header') @stop

MODIFICAR CANTIDAD DEL PEDIDO N° {{ $id }}


created_at)) }}" />

@foreach( $items as $item ) @endforeach
Producto Cantidad Unidad Precio Bruto Dscto. Negociado Dscto. Manager Dscto. Automático Dscto. Adicional Precio Neto
{{ $cont }} {{ $item->producto_codigo.' - '.$item->descripcion }} {{ $item->producto_unidad }} {{ '$'.number_format($item->precio) }} @if($item->descuento != 0) @elseif($item->descuento == 0) @endif @if($item->descuentomanager != 0) @elseif($item->descuentomanager == 0) @endif ${{ number_format($item->descuentoautomatico) }} @if($item->descuento + $item->descuentomanager != 0) {{ $item->descuento + $item->descuentomanager}}% @elseif($item->descuento + $item->descuentomanager == 0) {{ $item->descuento + $item->descuentomanager }}% @endif {{ '$'.number_format(($item->cantidad * $item->precio)) }}
SUBTOTAL: ${{ number_format($subtotal) }}
DESCUENTO: ${{ number_format($desctoTotal) }}
TOTAL: ${{ number_format($subtotal - $desctoTotal) }}
@section('footer') @endsection