| Orden Producto | {{ $orden->orden_producto_numero }} |
|---|---|
| Tipo Servicio | {{ $producto->tipo->servicio_tipo_nombre }} |
| Servicio | {{$producto->servicio_nombre}} |
| Valor sin impuesto | ₡ {{ number_format($producto->servicio_valor ,2, '.', ',') }} | {{-- {{ number_format($item->contrato_servicio_valor, 2, '.', ',') }} --}}
| Porcentaje de impuesto |
@if ($producto->impuesto)
@if ( $producto->impuesto->impuesto_porcentaje)
{{ $producto->impuesto->impuesto_porcentaje }} %
@else
No definido @endif @endif |
| Valor + impuesto | ₡
@if ($producto->impuesto)
@if ($producto->impuesto->impuesto_porcentaje)
@if ($producto->impuesto->servicio_impuesto_incluido == 1)
{{ number_format($producto->servicio_valor ,2, '.', ',') }} @else{{ number_format(( ($producto->servicio_valor / 1.13)) ,2, '.', ',') }} @endif @else {{ number_format($producto->servicio_valor ,2, '.', ',') }} @endif @else {{ number_format($producto->servicio_valor ,2, '.', ',') }} @endif |
| Cantidad | {{ $orden->orden_producto_detalle_cantidad }} |
| Valor Total | ₡ {{ number_format($orden->orden_producto_detalle_valor_total ,2, '.', ',') }} |
| Observacion | {{ $orden->orden_producto_detalle_observacion }} |