data grid sum Priceissue

This commit is contained in:
Mohd Faheem 2022-02-15 12:52:10 +05:30
parent d20de21abe
commit 17500c21cb
1 changed files with 2 additions and 0 deletions

View File

@ -208,6 +208,8 @@ trait ProvideCollection
$this->resolve($collection, $columnName, $condition, $filterValue, 'whereDate');
} else if ($columnType === 'boolean') {
$this->resolve($collection, $columnName, $condition, $filterValue, 'where', 'resolveBooleanQuery');
} else if ($columnType === 'price') {
$this->resolve($collection, $columnName, $condition, $filterValue, 'having');
} else {
$this->resolve($collection, $columnName, $condition, $filterValue);
}