Commit 63c84dba authored by d.arizona's avatar d.arizona

apdet

parent f855fbc7
...@@ -492,7 +492,7 @@ export default class FixedAssetsMovement extends Component { ...@@ -492,7 +492,7 @@ export default class FixedAssetsMovement extends Component {
if (indexID !== -1) { if (indexID !== -1) {
let valuezz = tableMeta.rowData[18].formula[indexID].value let valuezz = tableMeta.rowData[18].formula[indexID].value
// baru.push(valuezz) // baru.push(valuezz)
anjay.push(valuezz) anjay.push(valuezz == ""? 0 : valuezz)
// console.log(valuezz) // console.log(valuezz)
} }
} else { } else {
...@@ -501,7 +501,7 @@ export default class FixedAssetsMovement extends Component { ...@@ -501,7 +501,7 @@ export default class FixedAssetsMovement extends Component {
if (indexID !== -1) { if (indexID !== -1) {
// console.log(value.formula[indexID].value) // console.log(value.formula[indexID].value)
let valuezz = value.formula[indexID].value let valuezz = value.formula[indexID].value
anjay.push(valuezz) anjay.push(valuezz == ""? 0 : valuezz)
} }
} }
} else { } else {
......
This diff is collapsed.
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