@extends('layouts.app') @section('content') @extends('contabilidad.menu')
@csrf

Factura

No. {{$idSalida}}

@if($cotizacion->estatus==99) @endif

{{$cotizacion->cliente->nombre}}

{{ $cotizacion->cliente->direccion }}

@if ($cotizacion->cliente->condiciones_pago == 1)

Contado

@endif @if ($cotizacion->cliente->condiciones_pago == 6)

8 días

@endif @if ($cotizacion->cliente->condiciones_pago == 2)

15 días

@endif @if ($cotizacion->cliente->condiciones_pago == 3)

30 días

@endif @if ($cotizacion->cliente->condiciones_pago == 4)

45 días

@endif @if ($cotizacion->cliente->condiciones_pago == 5)

60 días

@endif
@if ($cotizacion->cliente->tipo_regimen == 1)

Ninguno

@endif @if ($cotizacion->cliente->tipo_regimen == 2)

Decreto régimen 2989

@endif
@if ($cotizacion->id_cotizacion>0) @else @endif
Descripción de Producto Cantidad Unidad de medida Precio unitario Impuestos Total Cotización

{{$cotizacion->producto->medida->nombre}} {{$cotizacion->producto->nombre}}

{{$cotizacion->cantidad}}

{{$cotizacion->producto->medida->nombre}}

@if ($cotizacion->cliente->tipo_regimen == 2)

{{number_format($cotizacion->cotizacion->precio/1.12,2,'.',',')}}

@else

{{number_format($cotizacion->cotizacion->precio,2,'.',',')}}

@endif
@if ($cotizacion->cliente->tipo_regimen == 2)

{{number_format(((0*$cotizacion->cotizacion)*.12),2,'.',',')}}

@else

{{number_format(((($cotizacion->cotizacion->precio-($cotizacion->cotizacion->precio/1.12))*$cotizacion->cantidad)),2,'.',',')}}

@endif
@if ($cotizacion->cliente->tipo_regimen == 2)

{{number_format(($cotizacion->cotizacion->precio*$cotizacion->cantidad),2,'.',',')}}

@else

{{number_format((($cotizacion->cotizacion->precio*$cotizacion->cantidad)),2,'.',',')}}

@endif
@if ($cotizacion->cliente->tipo_regimen == 2)

{{number_format($cotizacion->op->cotizaciones_p->precio,2,'.',',')}}

@else

{{number_format($cotizacion->op->cotizaciones_p->precio/1.12,2,'.',',')}}

@endif
@if ($cotizacion->cliente->tipo_regimen == 2)

{{number_format(((0*$cotizacion->cotizacion)*.12),2,'.',',')}}

@else

{{number_format(((($cotizacion->op->cotizaciones_p->precio-($cotizacion->op->cotizaciones_p->precio/1.12))*$cotizacion->cantidad)),2,'.',',')}}

@endif
@if ($cotizacion->cliente->tipo_regimen == 2)

{{number_format(($cotizacion->op->cotizaciones_p->precio*$cotizacion->cantidad),2,'.',',')}}

@else

{{number_format(($cotizacion->op->cotizaciones_p->precio*$cotizacion->cantidad),2,'.',',')}}

@endif
@if($cotizacion->cotizacion) {{$cotizacion->cotizacion->id}} @endif @if($cotizacion->op) {{$cotizacion->op->id_cotizacion}} @endif

@if ($cotizacion->id_cotizacion>0)

Impuestos: Q @if ($cotizacion->cliente->tipo_regimen == 2) {{number_format(((0*$cotizacion->cantidad)*.12),2,'.',',')}} @else {{number_format(((($cotizacion->cotizacion->precio-($cotizacion->cotizacion->precio/1.12))*$cotizacion->cantidad)),2,'.',',')}} @endif

Total: Q @if ($cotizacion->cliente->tipo_regimen == 2) {{number_format(($cotizacion->cotizacion->precio*$cotizacion->cantidad),2,'.',',')}} @else {{number_format((($cotizacion->cotizacion->precio*$cotizacion->cantidad)),2,'.',',')}} @endif

@else

Impuestos: Q @if ($cotizacion->cliente->tipo_regimen == 2) {{number_format(((0*$cotizacion->cantidad)*.12),2,'.',',')}} @else {{number_format(((($cotizacion->op->cotizaciones_p->precio-($cotizacion->op->cotizaciones_p->precio/1.12))*$cotizacion->cantidad)),2,'.',',')}} @endif

Total: Q @if ($cotizacion->cliente->tipo_regimen == 2) {{number_format(($cotizacion->op->cotizaciones_p->precio*$cotizacion->cantidad),2,'.',',')}} @else {{number_format((($cotizacion->op->cotizaciones_p->precio*$cotizacion->cantidad)),2,'.',',')}} @endif

@endif

Información de envio

@endsection