Commit 2e0c9ae6 authored by r.kurnia's avatar r.kurnia

Merge branch 'master' of http://103.44.149.204/d.arizona/tia-dev into rifka

parents 9091a005 2b4ee916
......@@ -788,7 +788,12 @@ export default class BalanceSheetOLPA extends Component {
const handleForecast = (tableMeta, periode, column) => {
let total = 0
if (column == 19 && String(tableMeta.rowData[5]).toLocaleLowerCase() == "r/e (cummulative)") {
total = tableMeta.rowData[7]
dataTable2[tableMeta.rowIndex][column] = tableMeta.rowData[7]
} else {
total = handleValueFormula(dataTable2[tableMeta.rowIndex][column], tableMeta, column, periode, dataTable2[tableMeta.rowIndex][23])
}
// console.log(total)
return total
}
......
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