Browse Source

volljaehrig_bei? mit Auge zudrücken

hmt 9 years ago
parent
commit
436f3423ba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/schild.rb

+ 1 - 1
lib/schild.rb

@@ -252,7 +252,7 @@ module SchildErweitert
 
 
     # gibt an, ob der Schüler zu einem Zeitpunkt *datum* volljährig war.
     # gibt an, ob der Schüler zu einem Zeitpunkt *datum* volljährig war.
     def volljaehrig_bei?(datum)
     def volljaehrig_bei?(datum)
-      return if datum.nil?
+      return Time.new(1899) if datum.nil? || self.Geburtsdatum.nil?
       geb, datum = self.Geburtsdatum.to_date, datum.to_date
       geb, datum = self.Geburtsdatum.to_date, datum.to_date
       (datum.year - geb.year - ((datum.month > geb.month || (datum.month == geb.month && datum.day >= geb.day)) ? 0 : 1)) >= 18
       (datum.year - geb.year - ((datum.month > geb.month || (datum.month == geb.month && datum.day >= geb.day)) ? 0 : 1)) >= 18
     end
     end