field object type

This commit is contained in:
Harry Bomrah 2016-01-13 18:48:17 +08:00
parent 9b1024def8
commit d53dce6adc
1 changed files with 5 additions and 1 deletions

View File

@ -54,7 +54,11 @@ class Experience
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.to_s == "String" || self.fields[t].type.to_s == "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_experience.#{t}")
} if !fields_to_remove.include?(t)