Consolidar

This commit is contained in:
2022-03-25 10:11:02 -03:00
parent fcc84ac09c
commit e3737aba27
13 changed files with 411 additions and 30 deletions

View File

@ -238,7 +238,7 @@ const transacciones = {
const parent = $(this.id)
parent.html('')
$.each(this.transacciones, (i, el) => {
this.saldo = this.saldo + parseInt(el.valor.valor) * ((el.isIncrement()) ? 1 : -1)
this.saldo = this.saldo + parseInt(el.valor.valor)// * ((el.isIncrement()) ? 1 : -1)
parent.append(el.draw({saldo: this.saldo, format: this.intl_format, format_array: this.cuenta.moneda.format, format_call: this.format}))
})
},