/Adicaemobile/mobile/simulador-comparador-pruebas.php
PHP | 332 lines | 284 code | 47 blank | 1 comment | 87 complexity | db48022c1d3e8fed7f453f7e637834ee MD5 | raw file
- <?php
- session_start();
- error_reporting(E_ALL & ~E_NOTICE);
-
- if(empty($_GET['opcion'])){
- //redirecciono
- }
-
- require_once 'inc/new_header.php';
- require_once 'inc/config.php';
- if ($_GET['opcion'] == '1') {
- $tipoConsulta = 43; //<30
- }
- else
- {
- $tipoConsulta = 54; //>30
- }
- $noSeleccion = false;
- if ($_GET['result'] == 'on') {
- foreach ($_POST as $key => $value) {
- if (!is_array($value)) {
- $$key = $value;
- } else {
- $$key = $value;
- }
- }
- $seleccion = substr($seleccion,0,-1);
- $seleccionArray = explode(",",$seleccion);
- if (count($seleccionArray) < 2) {
- $noSeleccion = true;
- }
- }
- ?>
- <div class="simulador">
- <div class="subheader">
- <?php if ($_GET['opcion'] == '1') { ?>
- <h3>HIPOTECAS HASTA 30 AÑOS</h3>
- <?php } ?>
-
- <?php if ($_GET['opcion'] == '2') { ?>
- <h3>HIPOTECAS MÁS DE 30 AÑOS</h3>
- <?php } ?>
- </div>
- <?php if ( ($_GET['result'] == 'off') || ($noSeleccion) ) { ?>
- <p>Si quiere conocer las características de un producto concreto, pulse el botón “+INFO” que aparece a la derecha de cada producto.</p>
- <p>Si quiere comparar dos productos, selecciónelos marcando la casilla que aparece a la izquierda de los productos y después pulse el botón “Comparar” que figura al final de la pantalla.</p>
- <p>No olvide que la información que aquí se expone es meramente orientativa y nunca definitiva. Usted debe pedir siempre al banco con el que quiera negociar la información exacta y concreta de la oferta.</p>
- <?php if ($noSeleccion) { ?>
- <span class="alert corner-all">
- <p>Debe seleccionar al menos dos productos para comparar</p>
- </span>
- <?php } ?>
- <input type="hidden" name="opcion" id="opcion" value="<?php echo $_GET['opcion']; ?>">
- <table style="width:100%">
- <tr>
- <th><b>ESCOGER</b></th>
- <th><b>ENTIDAD</b></th>
- <th><b>PRODUCTO</b></th>
- <th><b>+INFO</b></th>
- </tr>
- <?php
- $hoy = date("Y-m-d");
- $result = mysql_query("SELECT * FROM extranet_cash_productos WHERE id_tipo_producto = $tipoConsulta AND fecha_hasta >= '$hoy' ORDER BY cuantia_max ASC, anyos ASC;");
- while ($row=mysql_fetch_array($result)) {
- $idBanco = $row['id_entidad'];
- $resultBanco = mysql_query("SELECT * FROM extranet_cash_entidades WHERE id = $idBanco;");
- $rowBanco=mysql_fetch_array($resultBanco);
- ?>
- <tr style="text-align:center;">
- <td>
- <input type="checkbox" id="check_<?php echo $row['id'];?>" name="check_<?php echo $row['id'];?>" value="<?php echo $row['id']; ?>"/>
- </td>
- <td>
- <img style="border: 1px solid #999;padding: 5px 0;width: 100px;text-align: center;background-color: white;margin: 5px 0;" src="http://www.adicae.net/img/news/<?php echo $rowBanco['logo']; ?>"/>
- </td>
- <td>
- <p><?php echo $row['producto']; ?></p>
- <p><b><?php echo $row['tipo_interes']; ?></b></p>
- <p>Cuantía máxima: <?php echo $row['cuantia_max'].'%'; ?></p>
- <p>Plazo máximo: <?php echo $row['anyos'].' años'; ?></p>
- </td>
- <td>
- <input type="button" style="background-image:none;width:100%;height:50px;padding:0;font-size:18px;margin-top:0" value="+INFO" onclick="mostrarInfo(<?php echo $row['id'];?>)"/>
- </td>
- </tr>
- <input type="hidden" id="nombreBanco<?php echo $row['id'];?>" value="<?php echo $rowBanco['nombre']; ?>">
- <input type="hidden" id="nombreProducto<?php echo $row['id'];?>" value="<?php echo $row['producto']; ?>">
- <input type="hidden" id="imgBanco<?php echo $row['id'];?>" value="<?php echo $rowBanco['logo']; ?>">
- <input type="hidden" id="tipointeres<?php echo $row['id'];?>" value="<?php echo $row['tipo_interes']; ?>">
- <input type="hidden" id="cuantiamax<?php echo $row['id'];?>" value="<?php echo $row['cuantia_max']; ?>">
- <input type="hidden" id="anyos<?php echo $row['id'];?>" value="<?php echo $row['anyos']; ?>">
- <input type="hidden" id="condiciones1_<?php echo $row['id'];?>" value="<?php $texto = $row['condiciones1']; $texto = nl2br(str_replace("-","<br>-", $texto)); echo $texto; ?>">
- <input type="hidden" id="condiciones2_<?php echo $row['id'];?>" value="<?php $texto = $row['condiciones2']; $texto = nl2br(str_replace("-","<br>-", $texto)); echo $texto; ?>">
- <input type="hidden" id="condiciones3_<?php echo $row['id'];?>" value="<?php $texto = $row['condiciones3']; $texto = nl2br(str_replace("-","<br>-", $texto)); echo $texto; ?>">
- <input type="hidden" id="condiciones4_<?php echo $row['id'];?>" value="<?php $texto = $row['condiciones4']; $texto = nl2br(str_replace("-","<br>-", $texto)); echo $texto; ?>">
- <input type="hidden" id="avisos1_<?php echo $row['id'];?>" value="<?php $texto = $row['avisos1']; $texto = nl2br(str_replace("-","<br>-", $texto)); echo $texto; ?>">
- <input type="hidden" id="avisos2_<?php echo $row['id'];?>" value="<?php $texto = $row['avisos2']; $texto = nl2br(str_replace("-","<br>-", $texto)); echo $texto; ?>">
- <input type="hidden" id="fecha<?php echo $row['id'];?>" value="<?php echo substr($row['f_user'], 0, strpos($row['f_user'], ' ')); ?>">
- <?php
- }
- ?>
- </table>
- <br>
- <div style="text-align:right;">
- <?php
- $resultFecha = mysql_query("SELECT MAX(f_user) AS fecha FROM extranet_cash_productos");
- $rowFecha=mysql_fetch_array($resultFecha);
- ?>
- Última Actualización: <?php echo substr($rowFecha['fecha'], 0, strpos($rowFecha['fecha'], ' ')); ?> <br>
- Fuente: ADICAE elaboración propia
- </div>
- <form method="post" action="simulador-comparador-pruebas.php?action=form&result=on&opcion=<?php echo $_GET['opcion'];?>">
- <input type="hidden" name="seleccion" id="seleccion" value="">
- <input type="submit" value="Comparar"/>
- </form>
- <div id="info" style="display:none;position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.3);text-align:center;overflow: auto;" onclick="ocultarInfo()">
- <div id="infoContent" style="display:inline-block;width:80%;height:auto;background-color:#FFFFFF;margin-top:10%;margin-bottom:10%;">
- </div>
- </div>
- <?php
- }
- else
- if ($_GET['result'] == 'on') {
- ?>
- <p>Contratar una hipoteca es una decisión que exige tiempo.</p>
- <p>ADICAE le ayuda con el COMPARADOR FINANCIERO.</p>
- <ul>
- <li><p>Conozca las condiciones financieras de las ofertas hipotecarias: plazo, tipo de interés, cuantía, periodos de carencia, etc.</p></li>
- <li><p>Detecte los riesgos de cada préstamo: índice de referencia y diferenciales altos, contratación de productos vinculados, comisiones, etc.</p></li>
- <li><p>No contrate su hipoteca sin antes acudir a ADICAE.</p></li>
- <li><p>Si necesita más información o tiene problemas con su hipoteca o con otros créditos, la <a href='http://hipotecaconderechos.org/'>Plataforma Hipotecaria de ADICAE</a> es la respuesta:</p></li>
- </ul>
- <div id="container" style="width:100%;overflow-x:auto;height:auto;">
- <table style="width:100%">
- <tr style="text-align:center;">
- <?php
- $result = mysql_query("SELECT * FROM extranet_cash_productos WHERE id IN ($seleccion) ORDER BY cuantia_max ASC, anyos ASC;");
- while ($row=mysql_fetch_array($result)) {
- $idBanco = $row['id_entidad'];
- $resultBanco = mysql_query("SELECT * FROM extranet_cash_entidades WHERE id = $idBanco;");
- $rowBanco=mysql_fetch_array($resultBanco);
- ?>
- <td width="25%" style="vertical-align:text-top">
- <div>
- <img style="border: 1px solid #999;padding: 5px 0;width: 100px;text-align: center;background-color: white;margin: 5px 0;" src="http://www.adicae.net/img/news/<?php echo $rowBanco['logo']; ?>"/>
- </div>
- <h3><?php echo $row['producto'];?></h3>
- <p><?php echo $rowBanco['nombre'];?></p>
- <p><b><?php echo $row['tipo_interes']; ?></b></p>
- <p>Cuantía máxima: <?php echo $row['cuantia_max'].'%'; ?></p>
-
- <p>Plazo máximo: <?php echo $row['anyos'].' años'; ?></p>
- <?php if ( ($row['condiciones1'] != "") || ( $row['condiciones2'] != "") || ( $row['condiciones3'] != "") || ( $row['condiciones4'] != "") ) { ?>
- <p><b>CONDICIONES</b></p>
- <?php
- if ( ($row['condiciones1'] != "") || ( $row['condiciones2'] != "") ) { ?>
- <div style='text-align:justify;background-color:#00CC66;padding:10px'>
- <?php if ($row['condiciones1'] != "") { ?>
- <p><?php $texto = $row['condiciones1']; $texto = nl2br(str_replace("-","<br>-", $texto)); echo $texto;?></p>
- <?php }
- if ($row['condiciones2'] != "") { ?>
- <p><?php $texto = $row['condiciones2']; $texto = nl2br(str_replace("-","<br>-", $texto)); echo $texto;?></p>
- <?php } ?>
- </div>
- <?php }
- if ( ($row['condiciones3'] != "") || ( $row['condiciones3'] != "") ) { ?>
- <div style='text-align:justify;background-color:#C0C0C0;padding:10px'>
- <?php if ($row['condiciones3'] != "") { ?>
- <p><?php $texto = $row['condiciones3']; $texto = nl2br(str_replace("-","<br>-", $texto)); echo $texto;?></p>
- <?php }
- if ($row['condiciones4'] != "") { ?>
- <p><?php $texto = $row['condiciones4']; $texto = nl2br(str_replace("-","<br>-", $texto)); echo $texto;?></p>
- <?php } ?>
- </div>
- <?php
- }
- }
- ?>
- <?php if ( ($row['avisos1'] != "") || ( $row['avisos2'] != "") ) { ?>
- <p><b>ADVERTENCIAS</b></p>
- <div style='text-align:justify;background-color:#FF6666;padding:10px'>
- <?php if ($row['avisos1'] != "") { ?>
- <p><?php echo $row['avisos1'];?></p>
- <?php }
- if ($row['avisos2'] != "") { ?>
- <p><?php echo $row['avisos2'];?></p>
- <?php } ?>
- </div>
- <?php
- }
- ?>
- </td>
- <?php
- }
- ?>
- </tr>
- </table>
- </div>
- <div style="text-align:right;">
- <?php
- $resultFecha = mysql_query("SELECT MAX(f_user) AS fecha FROM extranet_cash_productos");
- $rowFecha=mysql_fetch_array($resultFecha);
- ?>
- Última Actualización: <?php echo substr($rowFecha['fecha'], 0, strpos($rowFecha['fecha'], ' ')); ?> <br>
- Fuente: ADICAE elaboración propia
- </div>
- <?php
- }
- ?>
-
- </div>
- <?php
- require_once 'inc/new_footer.php';
-
- if(isset($_SESSION['errores'])){
- unset($_SESSION['errores']);
- }
- if(isset($_SESSION['valores'])){
- unset($_SESSION['valores']);
- }
- ?>
- <script type="text/javascript">
- $(document).ready(function(){
- });
- $(document).on('change', 'input[type="checkbox"]', function(e) {
- var selAux = document.getElementById("seleccion").value;
- var opcAux = e.currentTarget.value;
- if (e.currentTarget.checked) {
- selAux += opcAux + ",";
- }
- else
- {
- selAux = selAux.replace(opcAux+",","")
- }
- document.getElementById("seleccion").value = selAux;
- });
- function mostrarInfo(valor) {
- textoInfo = "<div style='margin-top:20px;width:100%;text-align:center;'>";
- textoInfo += "<p>"+document.getElementById("nombreBanco"+valor).value+" - "+document.getElementById("nombreProducto"+valor).value+"</p>";
- textoInfo += "<div><img style='border: 1px solid #999;padding:5px 0;width: 100px;text-align:center;background-color:white;margin:5px 0;' src='http://www.adicae.net/img/news/"+document.getElementById("imgBanco"+valor).value+"'/></div>";
- textoInfo += "<p>"+document.getElementById("tipointeres"+valor).value+"</p>";
- textoInfo += "<p>Cuantía máxima: "+document.getElementById("cuantiamax"+valor).value+"%</p>";
- textoInfo += "<p>Plazo máximo: "+document.getElementById("anyos"+valor).value+" años</p>";
- if ( (document.getElementById("condiciones1_"+valor).value != "") || (document.getElementById("condiciones2_"+valor).value != "") || (document.getElementById("condiciones3_"+valor).value != "") || (document.getElementById("condiciones4_"+valor).value != "") ) {
- textoInfo += "<p><b>CONDICIONES</b></p>";
- if ( (document.getElementById("condiciones1_"+valor).value != "") || (document.getElementById("condiciones2_"+valor).value != "") ) {
- textoInfo += "<div style='text-align:justify;background-color:#00CC66;padding:10px 10px'>";
- if (document.getElementById("condiciones1_"+valor).value != "") {
- textoInfo += "<p>"+document.getElementById("condiciones1_"+valor).value+"</p>";
- }
- if (document.getElementById("condiciones2_"+valor).value != "") {
- textoInfo += "<p>"+document.getElementById("condiciones2_"+valor).value+"</p>";
- }
- textoInfo += "</div>";
- }
- if ( (document.getElementById("condiciones3_"+valor).value != "") || (document.getElementById("condiciones4_"+valor).value != "") ) {
- textoInfo += "<div style='text-align:justify;background-color:#C0C0C0;padding:10px 10px'>";
- if (document.getElementById("condiciones3_"+valor).value != "") {
- textoInfo += "<p>"+document.getElementById("condiciones3_"+valor).value+"</p>";
- }
- if (document.getElementById("condiciones4_"+valor).value != "") {
- textoInfo += "<p>"+document.getElementById("condiciones4_"+valor).value+"</p>";
- }
- textoInfo += "</div>";
- }
- }
- if ( (document.getElementById("avisos1_"+valor).value != "") || (document.getElementById("avisos2_"+valor).value != "") ) {
- textoInfo += "<p><b>ADVERTENCIAS</b></p>";
- textoInfo += "<div style='text-align:justify;background-color:#FF6666;padding:10px 10px'>";
- if (document.getElementById("avisos1_"+valor).value != "") {
- textoInfo += "<p>"+document.getElementById("avisos1_"+valor).value+"</p>";
- }
- if (document.getElementById("avisos2_"+valor).value != "") {
- textoInfo += "<p>"+document.getElementById("avisos2_"+valor).value+"</p>";
- }
- textoInfo += "</div>";
- }
- textoInfo += "<div>";
- textoInfo += "<p><a href='simulador-hipotecario.php'>Calcule su hipoteca en el simulador hipotecario de ADICAE.</a></p>";
- textoInfo += "<p>Última actualización: " + document.getElementById("fecha"+valor).value+"</p>";
- textoInfo += "<p>Fuente: ADICAE elaboración propia</p>";
- textoInfo += "</div>";
- textoInfo += "</div>"
- document.getElementById("infoContent").innerHTML = textoInfo;
- document.getElementById("info").style.display = "block";
- }
- function ocultarInfo() {
- document.getElementById("infoContent").innerHTML = "";
- document.getElementById("info").style.display = "none";
- }
- </script>