Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2024-08-30-fix2-alchemy #158

Merged
merged 4 commits into from
Aug 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion qgepqwat2ili/gui/gui_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def commit_session(self):
# session.begin_nested() and one additionnal self.session.commit()

# add info in message bar
iface.messageBar().pushMessage("Please be patient!", "Importing data in qgep - working ...", level=Qgis.Warning)
iface.messageBar().pushMessage("Please be patient!", "Importing data in qgep - working ...", level=Qgis.Info)

try:
self.session.commit()
Expand Down
3 changes: 1 addition & 2 deletions qgepqwat2ili/postimport.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ def qgep_postimport():
post_session.execute(text("SELECT qgep_od.wastewater_structure_update_fk_main_cover('', True);"))

logger.info("Update wastewater structure fk_main_wastewater_node")
post_session.execute(text("SELECT qgep_od.wastewater_structure_update_fk_main_wastewater_node('', True));"
)
post_session.execute(text("SELECT qgep_od.wastewater_structure_update_fk_main_wastewater_node('', True);"))

# add symbology update queries - backporting from tww https://github.com/teksi/wastewater/pull/263
logger.info("update_wastewater_node_symbology for all datasets - please be patient")
Expand Down
Loading