fix for column removal

This commit is contained in:
Harry Bomrah 2016-01-13 17:54:54 +08:00
parent be3945cd44
commit 485f9b5401
1 changed files with 5 additions and 1 deletions

View File

@ -52,7 +52,11 @@ class Honor
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)
if (self.fields[t].type == String || self.fields[t].type == Object rescue false)
fields_to_remove << t if (datas.where(t.to_sym.ne => nil, t.to_sym.ne => "").count == 0 rescue false)
else
fields_to_remove << t if (datas.where(t.to_sym.ne => nil).count == 0 rescue false)
end
pd_title << {
"plugin_data_title" => I18n.t("personal_honor.#{t}")
} if !fields_to_remove.include?(t)