stable

Clone or download

Read-only

Cache yesterday values for total and team effort

This is part of story #10670 a BurnUp chart based on Done stories How to test: - have a current burnup - have a past burnup Launch daily root: - you should see yesterday values cached for current burnups in plugin_agiledashboard_tracker_field_burnup_cache table Change-Id: I137acb302560a0ca5384ed96d6cd21e82023da0d

Modified Files

Name
M plugins/agiledashboard/db/install.sql +8 −0 Go to diff View file
A plugins/agiledashboard/db/mysql/updates/2017/201712180948_add_burnup_cache_table.php +53 −0 Go to diff View file
M plugins/agiledashboard/db/uninstall.sql +1 −0 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FormElement/Burnup.php +7 −4 Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupCacheDao.php +44 −0 Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupCacheDateRetriever.php +79 −0 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupDao.php +197 −0 Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupManualValuesAndChildrenListRetriever.php +80 −0 Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupTeamEffortCalculator.php +66 −0 Go to diff View file
R plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupCalculator.php Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/FormElement/SystemEvent/SystemEvent_BURNUP_DAILY.php +138 −0 Go to diff View file
M plugins/agiledashboard/include/agiledashboardPlugin.class.php +78 −0 Go to diff View file
M plugins/agiledashboard/include/autoload.php +8 −3 Go to diff View file