| {{ $loop->index + 1 }} |
{{ $item->RESS_NOMBRE }} |
{{ $item->pedidos }} |
$
{{ number_format($item->subtotal, 2) }} |
$
{{ number_format($item->comisionComercio, 2) }} |
$
{{ number_format($item->comisionCliente, 2) }} |
$
{{ number_format($item->envio, 2) }} |
$
{{ number_format($item->subtotal + $item->comisionComercio + $item->comisionCliente+$item->envio, 2) }}
|
$
{{ number_format($item->costoVenta, 2) }} |
$
{{ number_format($item->descuentoApp, 2) }} |
{{-- $
{{ number_format($item->descuentoComercio, 2) }} | --}}
$
{{ number_format($item->costoVenta + $item->descuentoApp, 2) }}
|
$
{{ number_format(round($item->subtotal, 4) - round($item->costoVenta, 4), 2) }}
|
$
{{ number_format($item->comisionComercio + $item->comisionCliente, 2) }}
|
$
{{ number_format($item->envio-$item->descuentoApp, 2) }}
|
$
{{ number_format(($item->subtotal-$item->costoVenta) + $item->comisionComercio + $item->comisionCliente + ($item->envio - $item->descuentoApp), 2) }}
|
{{-- $
{{ number_format(round($item->subtotal + $item->comisionComercio + $item->comisionCliente + $item->envio, 4) - round($item->costoVenta + $item->descuentoApp, 4), 2) }}
| --}}
@endforeach
| TOTALES |
{{ $totalPedidos }} |
$
{{ number_format($totalSubtotal, 2) }} |
$
{{ number_format($totalComisionComercio, 2) }} |
$
{{ number_format($totalComisionCliente, 2) }} |
$
{{ number_format($totalEnvio, 2) }} |
$
{{ number_format($totalSubtotal+$totalComisionComercio+$totalComisionCliente+$totalEnvio, 2) }} |
$
{{ number_format($totalCostoVenta, 2) }} |
$
{{ number_format($totalDescuentoApp, 2) }} |
$
{{ number_format($totalCostoVenta+$totalDescuentoApp, 2) }} |
$
{{ number_format($totalReventa, 2) }} |
$
{{ number_format($totalComisionComercio+$totalComisionCliente, 2) }} |
$
{{ number_format($totalEnvio-$totalDescuentoApp, 2) }} |
$
{{ number_format(($totalSubtotal-$totalCostoVenta)+$totalComisionComercio+$totalComisionCliente+($totalEnvio-$totalDescuentoApp), 2) }} |