fixed daily totals only for productive parents

This commit is contained in:
Louis Heredero 2025-03-02 14:46:24 +01:00
parent 57231c0d34
commit 2aa80e094a
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7
2 changed files with 4 additions and 2 deletions

View File

@ -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,

View File

@ -64,7 +64,7 @@
</tr>
<tr class="day-dates"></tr>
<tr class="day-totals">
<th colspan="2">TOTAL</th>
<th colspan="2">Total Productive</th>
</tr>
</tbody>
</table>