removed blank columns

This commit is contained in:
Harry Bomrah 2016-01-12 20:33:53 +08:00
parent 74f390d5c9
commit 00d45ab08e
1 changed files with 11 additions and 4 deletions

View File

@ -40,12 +40,19 @@ class Course
"year",
]
pd_title = fields_to_show.collect do |t|
{
"plugin_data_title" => I18n.t("personal_course.#{t}")
}
fields_to_remove = []
pd_title = []
fields_to_show.each do |t|
fields_to_remove << t if (datas.where(t.to_sym.ne => nil, t.to_sym.ne => "").count == 0 rescue false)
pd_title << {
"plugin_data_title" => I18n.t("personal_course.#{t}")
} if !fields_to_remove.include?(t)
end
fields_to_show = fields_to_show - fields_to_remove
plugin_datas = datas.sort_for_frontend.collect.with_index do |p,index|
pd_data = []