src/Eccube/Controller/Admin/Shipping/ShippingController.php 1 location
|
@@ 197-199 (lines=3) @@
|
| 194 |
|
); |
| 195 |
|
|
| 196 |
|
// セッションから検索条件を復元 |
| 197 |
|
if (!empty($searchData['status'])) { |
| 198 |
|
$searchData['status'] = $this->orderStatusRepository->find($searchData['status']); |
| 199 |
|
} |
| 200 |
|
if (count($searchData['multi_status']) > 0) { |
| 201 |
|
$statusIds = array(); |
| 202 |
|
foreach ($searchData['multi_status'] as $Status) { |
src/Eccube/Controller/Admin/Order/OrderController.php 1 location
|
@@ 243-245 (lines=3) @@
|
| 240 |
|
); |
| 241 |
|
|
| 242 |
|
// セッションから検索条件を復元 |
| 243 |
|
if (!empty($searchData['status'])) { |
| 244 |
|
$searchData['status'] = $this->orderStatusRepository->find($searchData['status']); |
| 245 |
|
} |
| 246 |
|
if (count($searchData['multi_status']) > 0) { |
| 247 |
|
$statusIds = array(); |
| 248 |
|
foreach ($searchData['multi_status'] as $Status) { |