Skip to content

Commit

Permalink
Merge pull request #2828 from eccubevn/fix-ea03
Browse files Browse the repository at this point in the history
Fix filter product when export CSV feature
  • Loading branch information
kiy0taka committed Feb 13, 2018
2 parents 9bf413b + bad76d7 commit a35a19a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Eccube/Repository/ProductRepository.php
Expand Up @@ -210,7 +210,7 @@ public function getQueryBuilderBySearchDataForAdmin($searchData)
}

// link_status
if (isset($searchData['link_status'])) {
if (isset($searchData['link_status']) && !empty($searchData['link_status'])) {
$qb
->andWhere($qb->expr()->in('p.Status', ':Status'))
->setParameter('Status', $searchData['link_status']);
Expand Down

0 comments on commit a35a19a

Please sign in to comment.