We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7749d4 commit 599f8cbCopy full SHA for 599f8cb
app/code/Magento/Reports/Model/Resource/Quote/Collection.php
@@ -84,9 +84,7 @@ public function addCustomerData($filter = null)
84
if (isset($filter['customer_name'])) {
85
$customerName = $customersSelect->getAdapter()
86
->getConcatSql(['customer.firstname', 'customer.lastname'], ' ');
87
- $customersSelect->where(
88
- $customerName . ' LIKE ?', '%' . $filter['customer_name'] . '%'
89
- );
+ $customersSelect->where($customerName . ' LIKE ?', '%' . $filter['customer_name'] . '%');
90
}
91
if (isset($filter['email'])) {
92
$customersSelect->where('customer.email LIKE ?', '%' . $filter['email'] . '%');
0 commit comments