forked from OCA/project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95544ac
commit 6bf7805
Showing
5 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
## CONTEXT | ||
The module has just enriched the milestones tab on the project, in order to offer 3 new fields: | ||
|
||
Total Estimated Hours. | ||
Total Hours Spent. | ||
Total Remaining Work. | ||
|
||
This option is advantageous because it allows you to compare the total hours spent on the project with the estimated hours of each milestone in order to be able to weight an overrun on a batch phase, and to see the time remaining on the batch by also having visual status of milestones. | ||
|
||
These fields are added to the list view of projects, in order to facilitate monitoring. | ||
|
||
|
||
## OVERVIEW | ||
The module inherits two modules that have been added to allow to define an estimated time on the milestone (project_milestone_estimated_hours), and to calculate the times spent on a milestone (project_milestone_spent_hours) | ||
|
||
The module add 4 new fields to project: | ||
|
||
* `Total Estimated Hours`: Field calculated by taking into account the total of the 'Estimated hours' fields of each milestone associated with the project. | ||
* `Total Spent Hours`: Field calculated by taking into account the total of the 'Hours spent' fields of each milestone associated with the project. | ||
* `Remaining Estimated Hours`: Calculated field based on the following calculation: Total Estimated Hours - Total Hours Spent. | ||
* `Total Remaining Work`: Field calculated based on the total of the ‘Remaining hours’ fields of the tasks associated with a project. | ||
Total Estimated Hours, Total Spent Hours and Total Remaining Work are visible under the milestone tab in form view and visible in tree view after milestones column. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* Numigi (tm) and all its contributors (https://bit.ly/numigiens) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
The module enriched the milestones tab on the project, in order to offer 3 new fields: | ||
|
||
Total Estimated Hours. | ||
Total Hours Spent. | ||
Total Remaining Work. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* Allow the user the to analyse estimated, spent and remaining hours by project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Usage | ||
As a user, from a project whose `Use milestones` box is checked, go to the tab of a project. | ||
|
||
1. Add 2 milestones: | ||
* Analysis (estimated 10h) | ||
|
||
![alt text](../static/description/milestone_1.png) | ||
|
||
* Realization (estimated 20h). | ||
|
||
![alt text](../static/description/milestone_2.png) | ||
|
||
2. From the project tasks, assigned to the respective milestones, add timelines. | ||
|
||
![alt text](../static/description/milestone_spent_hours.png) | ||
You can see that the estimated times of the milestones, and the times spent are well up in the list of milestones. | ||
|