field object type
This commit is contained in:
parent
00d45ab08e
commit
c119951045
|
@ -45,7 +45,11 @@ class Course
|
|||
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_course.#{t}")
|
||||
} if !fields_to_remove.include?(t)
|
||||
|
|
Loading…
Reference in New Issue