Commit 6f7aa30b authored by faisalhamdi's avatar faisalhamdi

issue upload dharma group!

parent c539e7f0
...@@ -409,7 +409,7 @@ export default class BalanceSheetRO extends Component { ...@@ -409,7 +409,7 @@ export default class BalanceSheetRO extends Component {
this.setState({ loading: true }) this.setState({ loading: true })
let n = 0 let n = 0
for (n = (this.props.quarter == 'q1' ? 10 : (this.props.quarter == 'q2' ? 13 : 16)); n <= 18; n++) { for (n = (this.props.quarter == 'q1' ? 10 : (this.props.quarter == 'q2' ? 13 : 16)); n <= 18; n++) {
if ((Number(i[n]) < Number(this.state.minValue) || Number(i[n]) > Number(this.state.maxValue))) { if ((Number(i[n]).toFixed(2) < Number(this.state.minValue) || Number(i[n]).toFixed(2) > Number(this.state.maxValue))) {
err = true 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