Skip to content

Commit 5564403

Browse files
committed
fix: waste rate
1 parent 5b68da8 commit 5564403

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pearljam-domain-model/src/main/java/fr/insee/pearljam/domain/reporting/readmodel/AbstractDailyStats.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public float getWasteRate() {
8989
if (allocated == 0) {
9090
return 0f;
9191
}
92-
return (float) (refContactOutcomeCount + impContactOutcomeCount + npiClosingCauseCount) * 100 / allocated;
92+
return (float) (refContactOutcomeCount + impContactOutcomeCount + npaClosingCauseCount) * 100 / allocated;
9393
}
9494

9595
public float getOutOfScopeRate() {

0 commit comments

Comments
 (0)