Skip to content

Commit

Permalink
Merge pull request #151 from lpoaura/dev
Browse files Browse the repository at this point in the history
fix extraction on a specific date (fix #150)
  • Loading branch information
lpofredc authored Oct 24, 2024
2 parents 901838d + 8d1a5f5 commit 85195b9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this

<!-- ## Unreleased [{version_tag}](https://github.com/opengisch/qgis-plugin-ci/releases/tag/{version_tag}) - YYYY-MM-DD -->


## 3.3.7 - 2024-1x-xx

* Fix missing data when extracting from a specific date (start_date = end_date) (fix #150).

## 3.3.6 - 2024-09-30

* Refactor query area generator (fix #148 from PR #149).
Expand Down
2 changes: 1 addition & 1 deletion plugin_qgis_lpo/commons/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def sql_datetime_filter_builder(
)
else:
datetime_where = (
f"(date >= '{start_date}'::date and date <= '{end_date}'::date)"
f"(date_jour >= '{start_date}'::date and date_jour <= '{end_date}'::date)"
)
return datetime_where

Expand Down
2 changes: 1 addition & 1 deletion plugin_qgis_lpo/metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ qgisMinimumVersion=3.16
qgisMaximumVersion=3.99

# versioning
version=3.3.6
version=3.3.7
changelog=https://github.com/lpoaura/PluginQGis-LPOData/blob/master/CHANGELOG.md

0 comments on commit 85195b9

Please sign in to comment.