Added class to Total row on timesheets and moved up to be the first aggregation element

This makes more natural to understand that it sums up the column on top of it.

FEA: ItEr76S28UserDashboard
This commit is contained in:
Lorenzo Tilve Álvaro 2012-06-29 11:24:58 +02:00
parent e43fac79b0
commit c1ab13b64f

View file

@ -606,8 +606,8 @@ public class MonthlyTimesheetController extends GenericForwardComposer
if (monthlyTimesheetModel.hasOtherReports()) {
result.add(MonthlyTimesheetRow.createOtherRow());
}
result.add(MonthlyTimesheetRow.createCapacityRow());
result.add(MonthlyTimesheetRow.createTotalRow());
result.add(MonthlyTimesheetRow.createCapacityRow());
result.add(MonthlyTimesheetRow.createExtraRow());
return result;
}