Commit fbcd6d55 authored by Dida Adams Arizona's avatar Dida Adams Arizona

Merge branch 'didam' into 'master'

tyty

See merge request !578
parents 73779c44 b86a5ebd
......@@ -516,15 +516,19 @@ export default class BalanceSheet extends Component {
arrayFormulaConvert.push(item)
} else {
let indexID = dataTable2.findIndex((val) => val[21] == item)
// console.log(item)
// console.log(indexID)
if (indexID !== -1) {
let valuezz = dataTable2[indexID][tableMeta.columnIndex]
// // console.log(dataTable2[indexID])
arrayFormulaConvert.push(valuezz == "" ? 0 : valuezz)
} else {
arrayFormulaConvert.push(Number(item))
}
}
})
// // console.log(arrayFormula)
// // console.log(arrayFormulaConvert)
// console.log(arrayFormula)
// console.log(arrayFormulaConvert)
let array = arrayFormulaConvert
let total = 0
let opt = ""
......@@ -547,7 +551,7 @@ export default class BalanceSheet extends Component {
} else if (opt == "bagi") {
total = Number(total) / Number(item)
} else {
total += item
total += Number(item)
}
}
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment