refs #2543 Fixed: not equal year filter issue.

This commit is contained in:
Cüneyt Şentürk
2022-07-21 10:09:57 +03:00
parent 2ce7d7f651
commit e5a68d8450
2 changed files with 30 additions and 1 deletions

View File

@ -132,6 +132,9 @@ abstract class Report
$input = request('search');
// Remove year as it's handled based on financial start
$search_not_year = 'not year:' . $this->getSearchStringValue('year', '', $input);
$input = str_replace($search_not_year, '', $input);
$search_year = 'year:' . $this->getSearchStringValue('year', '', $input);
$input = str_replace($search_year, '', $input);