q2rad 0.1.194__tar.gz → 0.1.195__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of q2rad might be problematic. Click here for more details.
- {q2rad-0.1.194 → q2rad-0.1.195}/PKG-INFO +1 -1
- {q2rad-0.1.194 → q2rad-0.1.195}/pyproject.toml +1 -1
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2utils.py +5 -1
- q2rad-0.1.195/q2rad/version.py +1 -0
- q2rad-0.1.194/q2rad/version.py +0 -1
- {q2rad-0.1.194 → q2rad-0.1.195}/LICENSE +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/README.md +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/__init__.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/__main__.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2actions.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2appmanager.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2appselector.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2constants.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2forms.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2lines.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2make.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2market.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2modules.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2packages.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2queries.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2rad.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2raddb.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2reports.py +0 -0
- {q2rad-0.1.194 → q2rad-0.1.195}/q2rad/q2stylesettings.py +0 -0
|
@@ -266,7 +266,11 @@ class Q2Form(_Q2Form):
|
|
|
266
266
|
def after_form_show():
|
|
267
267
|
query = self.model.get_table_name()
|
|
268
268
|
if not query.strip().lower().startswith("select "):
|
|
269
|
-
|
|
269
|
+
where = self.model.get_where()
|
|
270
|
+
where = "" if where == "" else f" where {where}"
|
|
271
|
+
order = self.model.get_order()
|
|
272
|
+
order = "" if order == "" else f" order by {order}"
|
|
273
|
+
query = f"select * from {query} {where} {order}"
|
|
270
274
|
form.query_edit.set_content({"queries": {"query": query}})
|
|
271
275
|
|
|
272
276
|
form.after_form_show = after_form_show
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.195"
|
q2rad-0.1.194/q2rad/version.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.194"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|