From 2aa80e094a54872073b0e682eb8553d1fb983f87 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Sun, 2 Mar 2025 14:46:24 +0100 Subject: [PATCH 1/3] fixed daily totals only for productive parents --- dispatcher/static/table.js | 4 +++- templates/table.html | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dispatcher/static/table.js b/dispatcher/static/table.js index 3e42a8c..e2fa788 100644 --- a/dispatcher/static/table.js +++ b/dispatcher/static/table.js @@ -229,7 +229,9 @@ class Table { durations[i] = hours total += hours parentDurations[i] += hours - this.dailyTotals[i] += hours + if (parent.is_productive) { + this.dailyTotals[i] += hours + } }) return { id: project.id, diff --git a/templates/table.html b/templates/table.html index 0f7631f..7d397ca 100644 --- a/templates/table.html +++ b/templates/table.html @@ -64,7 +64,7 @@ - TOTAL + Total Productive From cef66f2bd4f11719698c5d7b7d87e0adadb5160c Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Sun, 2 Mar 2025 16:08:14 +0100 Subject: [PATCH 2/3] made parent empty lines hidden --- dispatcher/static/table.js | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/dispatcher/static/table.js b/dispatcher/static/table.js index e2fa788..f958510 100644 --- a/dispatcher/static/table.js +++ b/dispatcher/static/table.js @@ -241,18 +241,20 @@ class Table { } }) - this.addProject( - parent.id, - parent.name, - parent.project_num, - parentDurations.map(v => v === 0 ? "" : v), - true, - parent.is_productive - ) + if (parentDurations.reduce((a, b) => a + b, 0) !== 0) { + this.addProject( + parent.id, + parent.name, + parent.project_num, + parentDurations.map(v => v === 0 ? "" : v), + true, + parent.is_productive + ) - projects.filter(p => p.total !== 0).forEach(project => { - this.addProject(project.id, project.name, "", project.durations) - }) + projects.filter(p => p.total !== 0).forEach(project => { + this.addProject(project.id, project.name, "", project.durations) + }) + } }) this.updateTotals() } From 756b51309a55e90ff818ea5af0e6027b64576af9 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Sun, 2 Mar 2025 16:09:09 +0100 Subject: [PATCH 3/3] bumped to version 0.1.3 --- TimeDispatcher/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TimeDispatcher/settings.py b/TimeDispatcher/settings.py index 95a4607..df0ad05 100644 --- a/TimeDispatcher/settings.py +++ b/TimeDispatcher/settings.py @@ -17,7 +17,7 @@ from dotenv import load_dotenv # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent -APP_VERSION = "0.1.2" +APP_VERSION = "0.1.3" load_dotenv(BASE_DIR / ".env")