2012-09-29 17:52:25 +02:00
|
|
|
class AppleBar
|
2012-10-06 17:14:57 +02:00
|
|
|
attr_reader :ordergroup
|
2012-09-29 17:52:25 +02:00
|
|
|
|
|
|
|
def initialize(ordergroup)
|
|
|
|
@ordergroup = ordergroup
|
|
|
|
@group_avg = ordergroup.avg_jobs_per_euro.to_f
|
|
|
|
@global_avg = Ordergroup.avg_jobs_per_euro
|
|
|
|
end
|
|
|
|
|
|
|
|
# Show group bar in following colors:
|
|
|
|
# Green if higher than 100
|
|
|
|
# Yellow if lower than 100 an higher than stop_ordering_under option value
|
|
|
|
# Red if below stop_ordering_under, the ordergroup isn't allowed to participate in an order anymore
|
2012-10-06 17:14:57 +02:00
|
|
|
def group_bar_state
|
2012-09-29 17:52:25 +02:00
|
|
|
if apples >= 100
|
2012-10-06 17:14:57 +02:00
|
|
|
'success'
|
2012-09-29 17:52:25 +02:00
|
|
|
else
|
|
|
|
if FoodsoftConfig[:stop_ordering_under].present? and
|
2021-03-01 15:27:26 +01:00
|
|
|
apples >= FoodsoftConfig[:stop_ordering_under]
|
2012-10-06 17:14:57 +02:00
|
|
|
'warning'
|
2012-09-29 17:52:25 +02:00
|
|
|
else
|
2012-10-06 17:14:57 +02:00
|
|
|
'danger'
|
2012-09-29 17:52:25 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-06 17:14:57 +02:00
|
|
|
# Use apples as percentage, but show at least 10 percent
|
|
|
|
def group_bar_width
|
|
|
|
@ordergroup.apples < 2 ? 2 : @ordergroup.apples
|
|
|
|
end
|
|
|
|
|
2012-09-29 17:52:25 +02:00
|
|
|
def mean_order_amount_per_job
|
2021-03-01 15:27:26 +01:00
|
|
|
(1 / @global_avg).round rescue 0
|
2012-09-29 17:52:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def apples
|
|
|
|
@apples ||= @ordergroup.apples
|
|
|
|
end
|
|
|
|
|
|
|
|
def with_restriction?
|
|
|
|
FoodsoftConfig[:stop_ordering_under].present?
|
|
|
|
end
|
2021-03-01 15:27:26 +01:00
|
|
|
end
|