Hello,
When using work-yearly real work report, the amount of work reported on some projects for some resources are not coherent with the work-monthly real work report sum.
I checked also in the database, and I find the same numbers than the monthly reports.
Looking a little bit more on the datas, I found that when asking for the work-yearly real work report for 2018, starting on January, I get the sum of work for 2018 and also for (at least) the 1st week of 2019.
Maybe this bug is correlated to bugs #3645 and #3635.
I tried both with v7.2.5 and 7.3.3
Issue recorded as Ticket #3763
Hi,
Fix in report/work.php, replace line 140 from
" or (year='" . ($periodValue + 1) . "' and month<='" . ($periodValue + 1) . ($paramMonth<11?'0':'') . $paramMonth . "'))";
to
" or (year='" . ($periodValue + 1) . "' and month<'" . ($periodValue + 1) . ($paramMonth<11?'0':'') . $paramMonth . "'))";