Commit df5a3df8 authored by Rifka Kurnia's avatar Rifka Kurnia

Merge branch 'rifka' into 'master'

100 total score

See merge request !1009
parents 9395c753 d16f9267
......@@ -703,9 +703,10 @@ export default class CorporateAnnualTargetMR extends Component {
if (item[12] == '' || String(item[12]) == '0' || String(item[12]) == '0.0') {
totalSW = 0
} else {
totalSW = (Number(totalScore) * Number(handlePercent) / 1000)
totalSW = (Number(totalScore) * Number(handlePercent) / 100)
}
totalSW = Number(totalSW).toFixed(2)
// console.log(totalSW)
if (item[0] !== 1 && item[0] !== 4) {
total += Number(totalSW)
}
......
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