diff --git a/codigo/AlugarxCompar/script.js b/codigo/AlugarxCompar/script.js index 4351562..db9f2cc 100644 --- a/codigo/AlugarxCompar/script.js +++ b/codigo/AlugarxCompar/script.js @@ -7,6 +7,13 @@ function calcularResultados() { const outrosCustos = parseFloat(document.getElementById('outrosCustos').value); const prazoFinanciamento = parseInt(document.getElementById('prazoFinanciamento').value); const cet = parseFloat(document.getElementById('cet').value) / 100; + + + + if (isNaN(valorCompra) || isNaN(valorAluguel) || isNaN(valorizacaoAnual) || isNaN(valorIGPM) || isNaN(entrada) || isNaN(outrosCustos) || isNaN(prazoFinanciamento) || isNaN(cet) ) { + alert("Por favor, preencha todos os campos."); + return; + } const valorFinanciado = valorCompra - entrada + outrosCustos; const jurosMensal = cet / 12; @@ -42,4 +49,4 @@ function calcularResultados() { document.getElementById('patrimonioTotalAlugInvestindo').value = patrimonioTotalAlugInvestindo.toFixed(2); document.getElementById('totalPagoAluguel').value = valorTotalAluguel.toFixed(2); document.getElementById('totalAportadoAlugInvestindo').value = totalAportadoAlugInvestindo.toFixed(2); -} \ No newline at end of file +}