From c1ab13b64f1fa972c53e74886faca5fdd59dbc8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenzo=20Tilve=20=C3=81lvaro?= Date: Fri, 29 Jun 2012 11:24:58 +0200 Subject: [PATCH] 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 --- .../web/users/dashboard/MonthlyTimesheetController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libreplan-webapp/src/main/java/org/libreplan/web/users/dashboard/MonthlyTimesheetController.java b/libreplan-webapp/src/main/java/org/libreplan/web/users/dashboard/MonthlyTimesheetController.java index 26fff80c2..a3082bf8c 100644 --- a/libreplan-webapp/src/main/java/org/libreplan/web/users/dashboard/MonthlyTimesheetController.java +++ b/libreplan-webapp/src/main/java/org/libreplan/web/users/dashboard/MonthlyTimesheetController.java @@ -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; }