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
|