Corrections mineures
This commit is contained in:
parent
59186fe37e
commit
fbf76bec6b
1 changed files with 2 additions and 2 deletions
|
@ -55,12 +55,12 @@ def adherents(regen=False):
|
||||||
|
|
||||||
@static_var(("data", []))
|
@static_var(("data", []))
|
||||||
def factures(regen=False):
|
def factures(regen=False):
|
||||||
"""Fonction évaluée paresseusement pour retourner la liste des câbleurs"""
|
"""Fonction évaluée paresseusement pour retourner la liste des factures"""
|
||||||
|
|
||||||
if regen or not factures.data:
|
if regen or not factures.data:
|
||||||
factures.data = DB.search(u'(&(|(debutAdhesion>=%(now)s)(debutConnexion>=%(now)s))(fid=*))' % {
|
factures.data = DB.search(u'(&(|(debutAdhesion>=%(now)s)(debutConnexion>=%(now)s))(fid=*))' % {
|
||||||
'now': crans_utils.to_generalized_time_format(config.debut_periode_transitoire),
|
'now': crans_utils.to_generalized_time_format(config.debut_periode_transitoire),
|
||||||
}, sizelimit=4000)
|
}, sizelimit=0)
|
||||||
return list(factures.data)
|
return list(factures.data)
|
||||||
|
|
||||||
@static_var(("data", []))
|
@static_var(("data", []))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue