Use tabs and try to sort the view by days until sold out

This commit is contained in:
Holger Hans Peter Freyther 2014-04-07 18:31:14 +02:00
parent 99c7ff1b4b
commit ed89932440
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ module Spree
forecast.push(generate_estimate(var))
}
forecast
forecast.sort { |x,y| x['days'] <=> y['days'] }
end
def stock_report_email()

View File

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