Add search within a range of dates for completion and modification
This commit is contained in:
@@ -42,10 +42,10 @@ abstract class BaseDateRangeFilter extends BaseFilter
|
||||
protected function applyDateFilter($field)
|
||||
{
|
||||
$dates = explode('..', $this->value);
|
||||
|
||||
if(count($dates)=== 2){
|
||||
$timestampFrom = $this->dateParser->getTimestamp($dates[0]);
|
||||
$timestampTo = $this->dateParser->getTimestamp($dates[1]);
|
||||
|
||||
if(count($dates)=== 2){
|
||||
$timestampFrom = $this->dateParser->getTimestamp($dates[0]." 00:00");
|
||||
$timestampTo = $this->dateParser->getTimestamp($dates[1]." 00:00");
|
||||
|
||||
$this->query->gte($field, $timestampFrom);
|
||||
$this->query->lte($field, $timestampTo + 86399);
|
||||
|
||||
Reference in New Issue
Block a user