[Mpuls-commits] r4312 - jmd/trunk/jmdstrukturweb/model
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Thu Dec 2 16:21:46 CET 2010
Author: torsten
Date: 2010-12-02 16:21:46 +0100 (Thu, 02 Dec 2010)
New Revision: 4312
Modified:
jmd/trunk/jmdstrukturweb/model/appointment.py
Log:
* jmdstrukturweb/model/appointment.py (StatisticReminderOverview.__init__): Disabled loading of missing
reminders.
Modified: jmd/trunk/jmdstrukturweb/model/appointment.py
===================================================================
--- jmd/trunk/jmdstrukturweb/model/appointment.py 2010-12-02 15:21:03 UTC (rev 4311)
+++ jmd/trunk/jmdstrukturweb/model/appointment.py 2010-12-02 15:21:46 UTC (rev 4312)
@@ -26,12 +26,14 @@
# longer than maxage.
# orphaned means that all last appointments, aids or the
# modification date is older than maxage
- oldAndActive = self.check_recent_statistic(maxage, user)
- if not oldAndActive:
- case = self.get_recent_statistic(maxage, user)
- appointment = self.makeAppointment(case)
- self.appointment_list.append(appointment)
+ # Issue1422
+ #oldAndActive = self.check_recent_statistic(maxage, user)
+ #if not oldAndActive:
+ # case = self.get_recent_statistic(maxage, user)
+ # appointment = self.makeAppointment(case)
+ # self.appointment_list.append(appointment)
+
def get_recent_statistic(self, days, user):
conn, cur = None, None
try:
More information about the Mpuls-commits
mailing list