fixed date
This commit is contained in:
parent
3f535c9616
commit
93c40803d1
|
@ -38,7 +38,7 @@ class Project
|
||||||
|
|
||||||
def duration
|
def duration
|
||||||
if !self.send('period_start_date').nil? or !self.send('period_end_date').nil?
|
if !self.send('period_start_date').nil? or !self.send('period_end_date').nil?
|
||||||
date = (self.send('period_start_date').strftime('%Y.%m') rescue "")+' ~ '+(self.send('period_end_date').strftime('%Y.%m') rescue I18n.t('personal_project.up_to_today'))
|
date = (self.send('period_start_date').strftime('%Y.%m.%d') rescue "")+' ~ '+(self.send('period_end_date').strftime('%Y.%m.%d') rescue I18n.t('personal_project.up_to_today'))
|
||||||
else
|
else
|
||||||
date = ""
|
date = ""
|
||||||
end
|
end
|
||||||
|
@ -90,7 +90,7 @@ class Project
|
||||||
elsif t == "period"
|
elsif t == "period"
|
||||||
|
|
||||||
if !p.send('period_start_date').nil? or !p.send('period_end_date').nil?
|
if !p.send('period_start_date').nil? or !p.send('period_end_date').nil?
|
||||||
date = (p.send('period_start_date').strftime('%Y.%m') rescue "")+' ~ '+(p.send('period_end_date').strftime('%Y.%m') rescue I18n.t('personal_project.up_to_today'))
|
date = (p.send('period_start_date').strftime('%Y.%m.%d') rescue "")+' ~ '+(p.send('period_end_date').strftime('%Y.%m.%d') rescue I18n.t('personal_project.up_to_today'))
|
||||||
else
|
else
|
||||||
date = ""
|
date = ""
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue