Actions
Improvement #435
closedAccept recalculated results as final result by one click
Start date:
07/22/2021
Due date:
% Done:
100%
Estimated time:
Compatible Redmine Version:
Pull Request Link:
Description
The user should get the possibility to accept the recalculated result by one click. That is, the final result will be updated with the values of the recalculated result.
Updated by liaham over 3 years ago
- Status changed from New to In Progress
- % Done changed from 0 to 30
Commenting the current project in TableCalculationInheritance::Patches::SpreadsheetsControllerPatch leads to the fact that in case of no other members the result is empty.
@members = @project.guests#.prepend(@project)
This could be avoided by
@members = @project.guests.empty? ? [@project] : @project.guests
Updated by liaham over 3 years ago
The patch below leads to problems when it is required to consider a result of the current spreadsheet.
In case the current spreadsheet has some data leading to a result, this result won't get included in the inherited values!
Updated by liaham over 3 years ago
- Subject changed from Differentiate stronger between calculated and modified results? to Accept recalculated results as final result by one click
- Description updated (diff)
- Status changed from In Progress to Closed
- % Done changed from 30 to 100
Actions