add negation to isFinite

This commit is contained in:
Dede Fuji Abdul
2024-04-16 22:22:36 +07:00
parent 98eec9f138
commit 018032afda
20 changed files with 102 additions and 131 deletions

View File

@@ -1097,7 +1097,8 @@ const calculateCustomSummary = (options: any) => {
total = 0
total_selesai = 0
} else if (options.summaryProcess === 'finalize') {
options.totalValue = total == 0 ? 0 : (total_selesai / total) * 100
options.totalValue =
!isFinite(total_selesai / total) || total_selesai == 0 ? 0 : (total_selesai / total) * 100
}
}
@@ -1106,7 +1107,10 @@ const calculateCustomSummary = (options: any) => {
total = 0
total_inproses = 0
} else if (options.summaryProcess === 'finalize') {
options.totalValue = total == 0 ? 0 : (total_inproses / total) * 100
options.totalValue =
!isFinite(total_inproses / total) || total_inproses == 0
? 0
: (total_inproses / total) * 100
}
}
@@ -1131,7 +1135,10 @@ const calculateCustomSummary = (options: any) => {
total_durasi_response = 0
count_durasi_response = 0
} else if (options.summaryProcess === 'finalize') {
options.totalValue = count_durasi_response / total_durasi_response
options.totalValue =
!isFinite(count_durasi_response / total_durasi_response) || count_durasi_response == 0
? 0
: count_durasi_response / total_durasi_response
}
}
@@ -1156,7 +1163,10 @@ const calculateCustomSummary = (options: any) => {
count_durasi_recovery = 0
total_durasi_recovery = 0
} else if (options.summaryProcess === 'finalize') {
options.totalValue = count_durasi_recovery / total_durasi_recovery
options.totalValue =
!isFinite(count_durasi_recovery / total_durasi_recovery) || count_durasi_recovery == 0
? 0
: count_durasi_recovery / total_durasi_recovery
}
}
}