socialforge/app/helpers/statistics_helper.rb

13 lines
270 B
Ruby
Raw Normal View History

2018-02-05 12:03:35 +08:00
module StatisticsHelper
2018-02-05 15:13:03 +08:00
include AttachmentsHelper
2018-05-08 16:25:59 +08:00
def data_format_string num
result = num
if num < 1024 * 1024
2018-05-08 16:33:25 +08:00
result = format("%0.3f", (num/1024)).to_s + " GB"
2018-05-08 16:25:59 +08:00
else
2018-05-08 16:33:25 +08:00
result = format("%0.3f", (num/(1024*1024))).to_s + " TB"
2018-05-08 16:25:59 +08:00
end
end
2018-02-05 12:03:35 +08:00
end