calculate the number of days it takes until the stock might be gone

This commit is contained in:
Holger Hans Peter Freyther 2013-02-28 15:32:37 +01:00
parent e88fbb9d8e
commit 2df27fca52
2 changed files with 4 additions and 2 deletions

View File

@ -42,8 +42,10 @@ module Spree
else
name = "Sku " + var.sku
end
days = var.count_on_hand / mean
{'weighted_mean' => mean, 'variant' => var, 'product' => var.product, 'name' => name}
{'weighted_mean' => mean, 'days' => days, 'variant' => var,
'product' => var.product, 'name' => name}
end
def generate_forecast()

View File

@ -5,7 +5,7 @@ will run low.
Estimates:
<% @forecast.each do |dict| %>
<%= dict['name'] %> => <%= dict['weighted_mean'].round(2) %> days until sold out.
<%= dict['name'] %> => <%= dict['days'].round(2) %> days until sold out.
<% end %>