diff --git a/src/Eccube/Controller/Admin/Customer/CustomerController.php b/src/Eccube/Controller/Admin/Customer/CustomerController.php index c8a3001f93f..a249a5a6bb9 100644 --- a/src/Eccube/Controller/Admin/Customer/CustomerController.php +++ b/src/Eccube/Controller/Admin/Customer/CustomerController.php @@ -34,6 +34,7 @@ class CustomerController { public function index(Application $app, Request $request) { + $session = $request->getSession(); $pagination = null; $searchForm = $app['form.factory'] ->createBuilder('admin_search_customer') @@ -43,6 +44,8 @@ public function index(Application $app, Request $request) $searchData = array(); if ($searchForm->isValid()) { $searchData = $searchForm->getData(); + // sessionのデータ保持 + $session->set('eccube.admin.customer.search', $searchData); } if ('POST' === $request->getMethod()) {