modified date
This commit is contained in:
		
							parent
							
								
									97de505179
								
							
						
					
					
						commit
						e39650abca
					
				|  | @ -25,6 +25,8 @@ class PersonalHonorsController < ApplicationController | ||||||
|               t << {"value" => (honor.send("honor_type").title rescue "")} |               t << {"value" => (honor.send("honor_type").title rescue "")} | ||||||
|             when "authors" |             when "authors" | ||||||
|               t << {"value" => (honor.send(:member_profile).name rescue "")} |               t << {"value" => (honor.send(:member_profile).name rescue "")} | ||||||
|  |             when "award_date" | ||||||
|  |               t << {"value" => (honor.send(fs).strftime("%Y/%m/%d") rescue "")} | ||||||
|             else |             else | ||||||
|               t << {"value" => (honor.send(fs) rescue "")} |               t << {"value" => (honor.send(fs) rescue "")} | ||||||
|             end |             end | ||||||
|  |  | ||||||
|  | @ -79,6 +79,8 @@ class Honor | ||||||
|           pd_data << { "data_title" => "<a href='#{OrbitHelper.url_to_plugin_show(p.to_param,'personal_honor')}' target='_blank'>#{p.send(t)}" } |           pd_data << { "data_title" => "<a href='#{OrbitHelper.url_to_plugin_show(p.to_param,'personal_honor')}' target='_blank'>#{p.send(t)}" } | ||||||
|         elsif t == "honor_type" |         elsif t == "honor_type" | ||||||
|             pd_data << {"data_title" => (p.honor_type.title rescue "")} |             pd_data << {"data_title" => (p.honor_type.title rescue "")} | ||||||
|  |         elsif t == "award_date" | ||||||
|  |               pd_data << {"value" => (p.send(fs).strftime("%Y/%m/%d") rescue "")} | ||||||
|         else |         else | ||||||
|           pd_data << { "data_title" => p.send(t) } |           pd_data << { "data_title" => p.send(t) } | ||||||
|         end |         end | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue