From 2aa80e094a54872073b0e682eb8553d1fb983f87 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Sun, 2 Mar 2025 14:46:24 +0100 Subject: [PATCH] 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