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
|
durations[i] = hours
|
||||||
total += hours
|
total += hours
|
||||||
parentDurations[i] += hours
|
parentDurations[i] += hours
|
||||||
|
if (parent.is_productive) {
|
||||||
this.dailyTotals[i] += hours
|
this.dailyTotals[i] += hours
|
||||||
|
}
|
||||||
})
|
})
|
||||||
return {
|
return {
|
||||||
id: project.id,
|
id: project.id,
|
||||||
|
@ -64,7 +64,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
<tr class="day-dates"></tr>
|
<tr class="day-dates"></tr>
|
||||||
<tr class="day-totals">
|
<tr class="day-totals">
|
||||||
<th colspan="2">TOTAL</th>
|
<th colspan="2">Total Productive</th>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user