Skip to content

Commit ba17325

Browse files
author
Vladyslav Byndych
authored
CRM-7550: Broken Forecast widget on month edges (#7145)
- Fixed date condition to include right edge
1 parent fcd3f45 commit ba17325

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OroCRM/Bundle/SalesBundle/Provider/Opportunity/ForecastProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ protected function applyDateFiltering(
272272
}
273273
if ($end) {
274274
$qb
275-
->andWhere(sprintf('%s < :end', $field))
275+
->andWhere(sprintf('%s <= :end', $field))
276276
->setParameter('end', $end);
277277
}
278278
}

0 commit comments

Comments
 (0)