Fixed bug in stats on a fresh installation.
This commit is contained in:
parent
d9d800b41f
commit
68f8d00930
1 changed files with 17 additions and 15 deletions
|
@ -4,21 +4,23 @@ max_width = 600
|
|||
global_avg = Ordergroup.avg_jobs_per_euro
|
||||
group_avg = @ordergroup.avg_jobs_per_euro.to_f
|
||||
|
||||
length_of_global_bar = max_width / 2.0
|
||||
length_of_group_bar = (group_avg / global_avg) * length_of_global_bar
|
||||
unless global_avg == 0 or global_avg.nan?
|
||||
length_of_global_bar = max_width / 2.0
|
||||
length_of_group_bar = (group_avg / global_avg) * length_of_global_bar
|
||||
|
||||
length_of_group_bar = max_width if length_of_group_bar > max_width
|
||||
length_of_group_bar = max_width if length_of_group_bar > max_width
|
||||
|
||||
color = group_avg >= global_avg ? "#78b74e" : "red"
|
||||
color = group_avg >= global_avg ? "#78b74e" : "red"
|
||||
%>
|
||||
Engagement Deiner Bestellgruppe
|
||||
<div class="stats-bar" style="width:<%= length_of_group_bar -%>px; background-color:<%= color -%>">
|
||||
Engagement Deiner Bestellgruppe
|
||||
<div class="stats-bar" style="width:<%= length_of_group_bar -%>px; background-color:<%= color -%>">
|
||||
<%= ((group_avg / global_avg) * 100).to_i -%><%= " Äpfel" if length_of_group_bar > 50 -%>
|
||||
</div>
|
||||
Durchschnittsengagement
|
||||
<div class="stats-bar" style="width:<%= length_of_global_bar -%>px">
|
||||
</div>
|
||||
Durchschnittsengagement
|
||||
<div class="stats-bar" style="width:<%= length_of_global_bar -%>px">
|
||||
100 Birnen
|
||||
</div>
|
||||
<span class="description">
|
||||
</div>
|
||||
<span class="description">
|
||||
Abgebildet ist das Verhältnis von erledigten Aufgaben zu dem Bestellvolumen Deiner Bestellgruppe im Vergleich zum Durchschnitt in der Foodcoop.
|
||||
</span>
|
||||
</span>
|
||||
<%- end -%>
|
||||
|
|
Loading…
Reference in a new issue