Skip to content

Commit

Permalink
Merge pull request #5048 from bcgov/test-marshal-NK-2860
Browse files Browse the repository at this point in the history
fix env data type issue
  • Loading branch information
nkan-aot2 authored Feb 8, 2024
2 parents fdc8500 + 3aabd1b commit 66aa8e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ def getunopenedunactionedrequests(cls, startdate, enddate):
order by request_id
) mp
join public."Payments" p on p.payment_id = mp.max
where status = 'Unopened' and rr.version = 1 and created_at > :cutoffdate and created_at < :enddate
where status = 'Unopened' and rr.version = 1 and created_at > :startdate and created_at < :enddate
order by rr.requestid '''
rs = db.session.execute(text(sql), {'startdate': startdate, 'enddate': enddate})
for row in rs:
Expand Down

0 comments on commit 66aa8e3

Please sign in to comment.