Skip to content

Commit

Permalink
Fix Occupation percent (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-marchionni authored Feb 15, 2024
1 parent 0bf9486 commit 840a222
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ SELECT
unanswered as `load$unAnswered£num#`,
transfered as `load$transfered£num#`,
IF((login - pause)>=0,round(answered / ((login - pause) / 3600), 2), NULL) as `load$callOnHour£num#`,
IF((login - pause)>=0,round(totcall / (login - pause), 2), NULL) as `load$occupation£percent#`,
IF((login - pause)>=0,round((totcall / (login - pause)*100), 2), NULL) as `load$occupation£percent#`,
total_recall as `load$totalRecall£num#`,
avg_recall as `load$avgRecall£seconds#`,
min_duration as `duration$min_duration£seconds`,
Expand Down

0 comments on commit 840a222

Please sign in to comment.