Commit 289f5902 authored by r.kurnia's avatar r.kurnia

rounding control should be nil di BS-OLPA 72dec21

parent 2f8d53dd
......@@ -564,7 +564,7 @@ export default class BalanceSheetOLPA extends Component {
err = true
} else if (Number(i[18].value) < this.state.minValue || Number(i[18].value) > this.state.maxValue) {
err = true
} else if (Number(i[19]) < this.state.minValue || Number(i[19]) > this.state.maxValue) {
} else if (Number(i[19]).toFixed(1) < this.state.minValue || Number(i[19]).toFixed(1) > this.state.maxValue) {
err = true
}
}
......
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