q2rad 0.1.232__tar.gz → 0.1.233__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.232 → q2rad-0.1.233}/PKG-INFO +1 -1
- {q2rad-0.1.232 → q2rad-0.1.233}/pyproject.toml +1 -1
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2appmanager.py +2 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2raddb.py +6 -3
- q2rad-0.1.233/q2rad/version.py +1 -0
- q2rad-0.1.232/q2rad/version.py +0 -1
- {q2rad-0.1.232 → q2rad-0.1.233}/LICENSE +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/README.md +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/__init__.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/__main__.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2actions.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2appselector.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2constants.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2extensions.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2forms.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2lines.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2make.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2market.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2modules.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2packages.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2queries.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2rad.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2reports.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2stylesettings.py +0 -0
- {q2rad-0.1.232 → q2rad-0.1.233}/q2rad/q2utils.py +0 -0
|
@@ -165,6 +165,7 @@ class AppManager(Q2Form):
|
|
|
165
165
|
control="button",
|
|
166
166
|
# datalen=14,
|
|
167
167
|
valid=self.export_q2market,
|
|
168
|
+
style="background:LightCoral",
|
|
168
169
|
)
|
|
169
170
|
self.add_control("/")
|
|
170
171
|
|
|
@@ -186,6 +187,7 @@ class AppManager(Q2Form):
|
|
|
186
187
|
control="button",
|
|
187
188
|
# datalen=10,
|
|
188
189
|
valid=self.import_app_all,
|
|
190
|
+
style="background:red",
|
|
189
191
|
)
|
|
190
192
|
if self.q2_app.app_url:
|
|
191
193
|
self.add_control(
|
|
@@ -170,7 +170,7 @@ def rollback(q2_db=None):
|
|
|
170
170
|
|
|
171
171
|
|
|
172
172
|
def today():
|
|
173
|
-
return datetime.date.today()
|
|
173
|
+
return str(datetime.date.today())
|
|
174
174
|
|
|
175
175
|
|
|
176
176
|
def ensure_empty_pk(table="", row={}, q2_db=None):
|
|
@@ -212,12 +212,15 @@ def last_day_of_month(date):
|
|
|
212
212
|
|
|
213
213
|
def ffinder(module_name="module", function_name="fname"):
|
|
214
214
|
from q2rad.q2rad import run_module
|
|
215
|
+
|
|
215
216
|
glo = {}
|
|
216
217
|
glo.update(globals())
|
|
217
|
-
run_module(module_name, import_only=True, _globals
|
|
218
|
+
run_module(module_name, import_only=True, _globals=glo)
|
|
218
219
|
if function_name in glo:
|
|
219
220
|
return glo[function_name]
|
|
220
221
|
else:
|
|
222
|
+
|
|
221
223
|
def empty_function(*args, **kwargs):
|
|
222
224
|
pass
|
|
223
|
-
|
|
225
|
+
|
|
226
|
+
return empty_function
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.233"
|
q2rad-0.1.232/q2rad/version.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.232"
|
|
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
|