@csrf
Datos generales
Cliente:
Contacto Comercial:
Servicio:
Modalidad:
Frontera-Frontera
Frontera-Puerta
Puerta-Puerta
Puerta-Frontera
Tipo de carga:
Vendedor:
Lugar de recepcion(SD):
Frontera de salida :
Frontera de ingreso:
Lugar de Entrega:
INCOTERM
@foreach ($incoterms as $incoterm)
{{$incoterm->inter_name}}
@endforeach
Guardar
@if($cotizacion->estado <> 'Orden de venta')
Equipos
EQUIPOS
Agregar equipo
@foreach ($containers as $container) @endforeach
N°
Tipo
Eliminar
{{$loop->iteration}}
{{$container->cont_type}}
@include('detalleCotizacionInicial.tipos.container')
@csrf
Detalle de servicio
Equipo:
@foreach ($containers as $container)
{{$container->cont_type}}
@endforeach
Servicio:
@foreach ($servicios as $service)
{{$service->serv_name}}
@endforeach
Precio unitario:
Cantidad:
IVA:
Agregar
@php $totalPago=0; $sub=0; $totalCantidad=0; $totalPunitario=0; $totalSTotal=0; $totalIVA=0; @endphp @foreach ($ofertServices as $item) @php $sub=$item->valor*$item->cantidad; if($item->iva == 1){ $valorIva = $sub*0.13; } else { $valorIva=0; } $total=$sub + $valorIva; @endphp @php $totalCantidad+=$item->cantidad; $totalPunitario+=$item->valor; $totalSTotal+=$sub; $totalIVA+=$valorIva; $totalPago += $total; @endphp @endforeach
item
Equipo
Servicio
Cantidad
Precio unitario
Sub total
IVA
Total
Eliminar
{{$loop->iteration}}
{{$item->cont_type}}
{{$item->serv_name}}
{{$item->cantidad}}
$
{{number_format($item->valor,2)}}
$
{{number_format($sub, 2 ) }}
$
{{number_format($valorIva, 2 )}}
$
{{number_format($total, 2 )}}
Monto total
{{$totalCantidad}}
$
{{number_format($totalPunitario, 2 ) }}
$
{{number_format($totalSTotal, 2 ) }}
$
{{number_format($totalIVA, 2 ) }}
$
{{number_format($totalPago, 2 ) }}
{{--
Total a pagar:
${{round($totalPago,2)}}
--}}
@csrf
Notas
Fecha límite:
Nota extra:
{{$detalle->nota_extra}}
Guardar
@endif