Changes between Version 34 and Version 35 of S3XRC/ResourceReport
- Timestamp:
- 08/29/10 12:50:09 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S3XRC/ResourceReport
v34 v35 226 226 # Date from 227 227 if form.vars.date_from: 228 from = datetime.combine(form.vars.date_from, time(0, 0,0))228 from = datetime.combine(form.vars.date_from, time(0, 0, 0)) 229 229 230 230 # Date until 231 231 if form.vars.date_until: 232 until = datetime.combine(form.vars.date_until +timedelta(days=1), time(0,0,0))232 until = datetime.combine(form.vars.date_until + timedelta(days=1), time(0, 0, 0)) 233 233 234 234 }}}