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") diff --git a/dispatcher/static/table.js b/dispatcher/static/table.js index 3e42a8c..f958510 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, @@ -239,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() } 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 @@