From 1f5c3b383a1264d7778ad94dd027bd4489bcd6a5 Mon Sep 17 00:00:00 2001 From: Victor Sanchez Sosa <41167132+Marcelo3Sanchez@users.noreply.github.com> Date: Thu, 29 Feb 2024 12:18:20 -0500 Subject: [PATCH] Update metodos.js --- metodos.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/metodos.js b/metodos.js index 87ef220..627e051 100644 --- a/metodos.js +++ b/metodos.js @@ -658,21 +658,21 @@ async function Fun_ConsultarClavesCatastrales(agent, req, res, _cedula = null, n $t_pag = 0; $d_tt = 0; if (legion['data']['data_add'].length > 0) { - printzeus += '\n\n Ud cuenta con rubros que aplican a la remisión intereses:'; + printzeus += '\n\nUd cuenta con rubros que aplican a la remisión intereses:'; legion['data']['data_add'].forEach((elem_ares, index) => { $d_tt += elem_ares.deuda_total; $t_int += elem_ares.ahorro; $t_pag += elem_ares.total_remision; - printzeus +='\n*'+elem_ares.rubro + ' - Desde: '+elem_ares.anio_min + ' Hasta: '+elem_ares.anio_max; - printzeus +='\nDeuda a la fecha: '+elem_ares.deuda_total; - printzeus +='\nCapital: '+elem_ares.deuda_total; - printzeus +='\nInterés exonerado por remisión: '+elem_ares.ahorro; - printzeus +='\nValor a pagar: '+elem_ares.total_remision + '\n\n'; + // printzeus +='\n*'+elem_ares.rubro + ' - Desde: '+elem_ares.anio_min + ' Hasta: '+elem_ares.anio_max; + // printzeus +='\nDeuda a la fecha: '+elem_ares.deuda_total; + // printzeus +='\nCapital: '+elem_ares.deuda_total; + // printzeus +='\nInterés exonerado por remisión: '+elem_ares.ahorro; + // printzeus +='\nValor a pagar: '+elem_ares.total_remision + '\n\n'; }); - printzeus += '\n\n Deuda total: '+$t_pag; - printzeus += '\n Total de interés exonerado por remisión: '+$t_int; - printzeus += '\n Valor a pagar: '+$d_tt; + printzeus += '\nDeuda total con intereses: '+$t_pag; + printzeus += '\nTotal de interés exonerado por remisión: '+$t_int; + printzeus += '\nValor a pagar exonerado por remisión: '+$d_tt; }