We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60af2bf commit 280621fCopy full SHA for 280621f
app/Tuttle.py
@@ -243,6 +243,9 @@ def update(self):
243
244
def on_click_generate_invoices(self, event):
245
"""Generate invoices for the selected project and date range."""
246
+ self.app.snackbar_message(
247
+ f"generating invoice and timesheet for {self.project_select.value}"
248
+ )
249
logger.info("Generate invoices clicked")
250
if not self.calendar_file_path:
251
logger.error("No calendar file selected!")
scripts/build_app.py
@@ -0,0 +1,5 @@
1
+import os
2
+
3
+os.system(
4
+ "pyinstaller app/Tuttle.py --noconsole --noconfirm --onefile --add-data 'tuttle_tests/data/TuttleDemo-TimeTracking.ics:.'"
5
+)
scripts/run_app.py
scripts/test.py
0 commit comments