fixed daily totals only for productive parents
This commit is contained in:
parent
57231c0d34
commit
2aa80e094a
@ -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,
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user