Commit 875bc762 authored by Julien Muchembled's avatar Julien Muchembled

composition: fix comparison of expiration date and use more readable operators

parent 23bfa3f2
......@@ -59,12 +59,12 @@ def _getEffectiveModel(self, start_date, stop_date):
if start_date is not None:
query_list.append(ComplexQuery(Query(effective_date=None),
Query(effective_date=start_date,
range='ngt'),
range='<='),
logical_operator='OR'))
if stop_date is not None:
query_list.append(ComplexQuery(Query(expiration_date=None),
Query(expiration_date=stop_date,
range='min'),
range='>'),
logical_operator='OR'))
# XXX What to do the catalog returns nothing (either because 'self' was just
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment