@@ -61,7 +61,7 @@ |
||
61 | 61 | $app = $this->app; |
62 | 62 | |
63 | 63 | $builder |
64 | - ->addEventListener(FormEvents::POST_SET_DATA, function ($event) use ($app) { |
|
64 | + ->addEventListener(FormEvents::POST_SET_DATA, function($event) use ($app) { |
|
65 | 65 | /** @var \Eccube\Entity\OrderItem $data */ |
66 | 66 | $data = $event->getData(); |
67 | 67 | /** @var \Symfony\Component\Form\Form $form */ |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | /** |
259 | 259 | * 複数配送オプション有効時の画面制御を行う. |
260 | 260 | */ |
261 | - $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) { |
|
261 | + $builder->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) { |
|
262 | 262 | |
263 | 263 | if ($this->BaseInfo->getOptionMultipleShipping() != Constant::ENABLED) { |
264 | 264 | return; |
@@ -268,17 +268,16 @@ discard block |
||
268 | 268 | $orderDetails = &$data['OrderDetails']; |
269 | 269 | |
270 | 270 | // 数量0フィルター |
271 | - $quantityFilter = function ($v) { |
|
271 | + $quantityFilter = function($v) { |
|
272 | 272 | return !(isset($v['quantity']) && preg_match('/^0+$/', trim($v['quantity']))); |
273 | 273 | }; |
274 | 274 | |
275 | 275 | // $shippings = &$data['Shippings']; |
276 | 276 | |
277 | 277 | // 数量を抽出 |
278 | - $getQuantity = function ($v) { |
|
278 | + $getQuantity = function($v) { |
|
279 | 279 | return (isset($v['quantity']) && preg_match('/^\d+$/', trim($v['quantity']))) ? |
280 | - trim($v['quantity']) : |
|
281 | - 0; |
|
280 | + trim($v['quantity']) : 0; |
|
282 | 281 | }; |
283 | 282 | |
284 | 283 | // foreach ($shippings as &$shipping) { |
@@ -295,7 +294,7 @@ discard block |
||
295 | 294 | $orderDetail['quantity'] = 0; |
296 | 295 | |
297 | 296 | // 受注詳細と同じ商品規格のみ抽出 |
298 | - $productClassFilter = function ($v) use ($orderDetail) { |
|
297 | + $productClassFilter = function($v) use ($orderDetail) { |
|
299 | 298 | return $orderDetail['ProductClass'] === $v['ProductClass']; |
300 | 299 | }; |
301 | 300 | |
@@ -304,10 +303,9 @@ discard block |
||
304 | 303 | if (!empty($shipping['OrderItems'])) { |
305 | 304 | |
306 | 305 | // 同じ商品規格の受注詳細の価格を適用 |
307 | - $applyPrice = function (&$v) use ($orderDetail) { |
|
306 | + $applyPrice = function(&$v) use ($orderDetail) { |
|
308 | 307 | $v['price'] = ($v['ProductClass'] === $orderDetail['ProductClass']) ? |
309 | - $orderDetail['price'] : |
|
310 | - $v['price']; |
|
308 | + $orderDetail['price'] : $v['price']; |
|
311 | 309 | }; |
312 | 310 | array_walk($shipping['OrderItems'], $applyPrice); |
313 | 311 | |
@@ -336,7 +334,7 @@ discard block |
||
336 | 334 | // } |
337 | 335 | // }); |
338 | 336 | // 選択された支払い方法の名称をエンティティにコピーする |
339 | - $builder->addEventListener(FormEvents::POST_SUBMIT, function (FormEvent $event) { |
|
337 | + $builder->addEventListener(FormEvents::POST_SUBMIT, function(FormEvent $event) { |
|
340 | 338 | $Order = $event->getData(); |
341 | 339 | $Payment = $Order->getPayment(); |
342 | 340 | if (!is_null($Payment)) { |
@@ -344,7 +342,7 @@ discard block |
||
344 | 342 | } |
345 | 343 | }); |
346 | 344 | // 会員受注の場合、会員の性別/職業/誕生日をエンティティにコピーする |
347 | - $builder->addEventListener(FormEvents::POST_SUBMIT, function (FormEvent $event) { |
|
345 | + $builder->addEventListener(FormEvents::POST_SUBMIT, function(FormEvent $event) { |
|
348 | 346 | $Order = $event->getData(); |
349 | 347 | $Customer = $Order->getCustomer(); |
350 | 348 | if (!is_null($Customer)) { |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | ))); |
148 | 148 | |
149 | 149 | $app = $this->app; |
150 | - $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) use ($app) { |
|
150 | + $builder->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) use ($app) { |
|
151 | 151 | // モーダルからのPOST時に、金額等をセットする. |
152 | 152 | if ('modal' === $this->requestStack->getCurrentRequest()->get('modal')) { |
153 | 153 | $data = $event->getData(); |
@@ -164,17 +164,13 @@ discard block |
||
164 | 164 | $data['product_name'] = $Product->getName(); |
165 | 165 | $data['product_code'] = $ProductClass->getCode(); |
166 | 166 | $data['class_name1'] = $ProductClass->hasClassCategory1() ? |
167 | - $ProductClass->getClassCategory1()->getClassName() : |
|
168 | - null; |
|
167 | + $ProductClass->getClassCategory1()->getClassName() : null; |
|
169 | 168 | $data['class_name2'] = $ProductClass->hasClassCategory2() ? |
170 | - $ProductClass->getClassCategory2()->getClassName() : |
|
171 | - null; |
|
169 | + $ProductClass->getClassCategory2()->getClassName() : null; |
|
172 | 170 | $data['class_category_name1'] = $ProductClass->hasClassCategory1() ? |
173 | - $ProductClass->getClassCategory1()->getName() : |
|
174 | - null; |
|
171 | + $ProductClass->getClassCategory1()->getName() : null; |
|
175 | 172 | $data['class_category_name2'] = $ProductClass->hasClassCategory2() ? |
176 | - $ProductClass->getClassCategory2()->getName() : |
|
177 | - null; |
|
173 | + $ProductClass->getClassCategory2()->getName() : null; |
|
178 | 174 | $data['tax_rule'] = $TaxRule->getRoundingType()->getId(); |
179 | 175 | $data['price'] = $ProductClass->getPrice02(); |
180 | 176 | $data['quantity'] = empty($data['quantity']) ? 1 : $data['quantity']; |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | $app = $this->app; |
179 | 179 | // XXX price を priceIncTax にセットし直す |
180 | 180 | // OrderItem::getTotalPrice でもやっているので、どこか一箇所にまとめたい |
181 | - $builder->addEventListener(FormEvents::POST_SUBMIT, function (FormEvent $event) use ($app) { |
|
181 | + $builder->addEventListener(FormEvents::POST_SUBMIT, function(FormEvent $event) use ($app) { |
|
182 | 182 | /** @var \Eccube\Entity\OrderItem $OrderItem */ |
183 | 183 | $OrderItem = $event->getData(); |
184 | 184 | $TaxDisplayType = $OrderItem->getTaxDisplayType(); |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | |
197 | 197 | $event->setData($OrderItem); |
198 | 198 | }); |
199 | - $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) use ($app) { |
|
199 | + $builder->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) use ($app) { |
|
200 | 200 | // モーダルからのPOST時に、金額等をセットする. |
201 | 201 | if ('modal' === $this->requestStack->getCurrentRequest()->get('modal')) { |
202 | 202 | $data = $event->getData(); |
@@ -266,17 +266,13 @@ discard block |
||
266 | 266 | $data['product_name'] = $Product->getName(); |
267 | 267 | $data['product_code'] = $ProductClass->getCode(); |
268 | 268 | $data['class_name1'] = $ProductClass->hasClassCategory1() ? |
269 | - $ProductClass->getClassCategory1()->getClassName() : |
|
270 | - null; |
|
269 | + $ProductClass->getClassCategory1()->getClassName() : null; |
|
271 | 270 | $data['class_name2'] = $ProductClass->hasClassCategory2() ? |
272 | - $ProductClass->getClassCategory2()->getClassName() : |
|
273 | - null; |
|
271 | + $ProductClass->getClassCategory2()->getClassName() : null; |
|
274 | 272 | $data['class_category_name1'] = $ProductClass->hasClassCategory1() ? |
275 | - $ProductClass->getClassCategory1()->getName() : |
|
276 | - null; |
|
273 | + $ProductClass->getClassCategory1()->getName() : null; |
|
277 | 274 | $data['class_category_name2'] = $ProductClass->hasClassCategory2() ? |
278 | - $ProductClass->getClassCategory2()->getName() : |
|
279 | - null; |
|
275 | + $ProductClass->getClassCategory2()->getName() : null; |
|
280 | 276 | $data['price'] = $ProductClass->getPrice02(); |
281 | 277 | $data['quantity'] = empty($data['quantity']) ? 1 : $data['quantity']; |
282 | 278 | $data['tax_type'] = TaxType::TAXATION; |
@@ -46,7 +46,7 @@ |
||
46 | 46 | 'label' => false, |
47 | 47 | 'class' => 'Eccube\Entity\Page', |
48 | 48 | 'choice_label' => 'name', |
49 | - 'query_builder' => function (EntityRepository $er) { |
|
49 | + 'query_builder' => function(EntityRepository $er) { |
|
50 | 50 | return $er |
51 | 51 | ->createQueryBuilder('l') |
52 | 52 | ->where('l.id <> 0') |
@@ -2,13 +2,9 @@ |
||
2 | 2 | namespace Eccube\Service\Calculator\Strategy; |
3 | 3 | |
4 | 4 | use Eccube\Application; |
5 | -use Eccube\Entity\Master\OrderItemType; |
|
6 | -use Eccube\Entity\Master\TaxType; |
|
7 | -use Eccube\Entity\Master\TaxDisplayType; |
|
8 | 5 | use Eccube\Entity\Order; |
9 | 6 | use Eccube\Entity\PurchaseInterface; |
10 | 7 | use Eccube\Entity\OrderItem; |
11 | -use Eccube\Entity\Shipping; |
|
12 | 8 | use Eccube\Repository\Master\OrderItemTypeRepository; |
13 | 9 | use Eccube\Service\Calculator\OrderItemCollection; |
14 | 10 |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | foreach ($data as $row) { |
191 | 191 | |
192 | 192 | if ($headerSize != count($row)) { |
193 | - $this->addErrors(($data->key() + 1) . '行目のCSVフォーマットが一致しません。'); |
|
193 | + $this->addErrors(($data->key() + 1).'行目のCSVフォーマットが一致しません。'); |
|
194 | 194 | return $this->render($app, $form, $headers); |
195 | 195 | } |
196 | 196 | |
@@ -201,33 +201,33 @@ discard block |
||
201 | 201 | if (preg_match('/^\d+$/', $row['商品ID'])) { |
202 | 202 | $Product = $this->productRepository->find($row['商品ID']); |
203 | 203 | if (!$Product) { |
204 | - $this->addErrors(($data->key() + 1) . '行目の商品IDが存在しません。'); |
|
204 | + $this->addErrors(($data->key() + 1).'行目の商品IDが存在しません。'); |
|
205 | 205 | return $this->render($app, $form, $headers); |
206 | 206 | } |
207 | 207 | } else { |
208 | - $this->addErrors(($data->key() + 1) . '行目の商品IDが存在しません。'); |
|
208 | + $this->addErrors(($data->key() + 1).'行目の商品IDが存在しません。'); |
|
209 | 209 | return $this->render($app, $form, $headers); |
210 | 210 | } |
211 | 211 | |
212 | 212 | } |
213 | 213 | |
214 | 214 | if ($row['公開ステータス(ID)'] == '') { |
215 | - $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が設定されていません。'); |
|
215 | + $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が設定されていません。'); |
|
216 | 216 | } else { |
217 | 217 | if (preg_match('/^\d+$/', $row['公開ステータス(ID)'])) { |
218 | 218 | $ProductStatus = $this->productStatusRepository->find($row['公開ステータス(ID)']); |
219 | 219 | if (!$ProductStatus) { |
220 | - $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が存在しません。'); |
|
220 | + $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が存在しません。'); |
|
221 | 221 | } else { |
222 | 222 | $Product->setStatus($ProductStatus); |
223 | 223 | } |
224 | 224 | } else { |
225 | - $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が存在しません。'); |
|
225 | + $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が存在しません。'); |
|
226 | 226 | } |
227 | 227 | } |
228 | 228 | |
229 | 229 | if (Str::isBlank($row['商品名'])) { |
230 | - $this->addErrors(($data->key() + 1) . '行目の商品名が設定されていません。'); |
|
230 | + $this->addErrors(($data->key() + 1).'行目の商品名が設定されていません。'); |
|
231 | 231 | return $this->render($app, $form, $headers); |
232 | 232 | } else { |
233 | 233 | $Product->setName(Str::trimAll($row['商品名'])); |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) { |
287 | 287 | $ProductClassOrg->setDeliveryFee($deliveryFee); |
288 | 288 | } else { |
289 | - $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。'); |
|
289 | + $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。'); |
|
290 | 290 | } |
291 | 291 | } |
292 | 292 | } |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | if ($row['規格分類1(ID)'] != '') { |
295 | 295 | |
296 | 296 | if ($row['規格分類1(ID)'] == $row['規格分類2(ID)']) { |
297 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。'); |
|
297 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。'); |
|
298 | 298 | } else { |
299 | 299 | // 商品規格あり |
300 | 300 | // 企画分類あり商品を作成 |
@@ -309,30 +309,30 @@ discard block |
||
309 | 309 | if (preg_match('/^\d+$/', $row['規格分類1(ID)'])) { |
310 | 310 | $ClassCategory1 = $this->classCategoryRepository->find($row['規格分類1(ID)']); |
311 | 311 | if (!$ClassCategory1) { |
312 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
312 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
313 | 313 | } else { |
314 | 314 | $ProductClass->setClassCategory1($ClassCategory1); |
315 | 315 | } |
316 | 316 | } else { |
317 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
317 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
318 | 318 | } |
319 | 319 | |
320 | 320 | if ($row['規格分類2(ID)'] != '') { |
321 | 321 | if (preg_match('/^\d+$/', $row['規格分類2(ID)'])) { |
322 | 322 | $ClassCategory2 = $this->classCategoryRepository->find($row['規格分類2(ID)']); |
323 | 323 | if (!$ClassCategory2) { |
324 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
324 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
325 | 325 | } else { |
326 | 326 | if ($ClassCategory1 && |
327 | 327 | ($ClassCategory1->getClassName()->getId() == $ClassCategory2->getClassName()->getId()) |
328 | 328 | ) { |
329 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。'); |
|
329 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。'); |
|
330 | 330 | } else { |
331 | 331 | $ProductClass->setClassCategory2($ClassCategory2); |
332 | 332 | } |
333 | 333 | } |
334 | 334 | } else { |
335 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
335 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
336 | 336 | } |
337 | 337 | } |
338 | 338 | $ProductClass->setProductStock($ProductStock); |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | |
345 | 345 | } else { |
346 | 346 | if ($row['規格分類2(ID)'] != '') { |
347 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
347 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
348 | 348 | } |
349 | 349 | } |
350 | 350 | |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) { |
373 | 373 | $pc->setDeliveryFee($deliveryFee); |
374 | 374 | } else { |
375 | - $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。'); |
|
375 | + $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。'); |
|
376 | 376 | } |
377 | 377 | } |
378 | 378 | } |
@@ -394,7 +394,7 @@ discard block |
||
394 | 394 | } |
395 | 395 | |
396 | 396 | if ($row['規格分類1(ID)'] == $row['規格分類2(ID)']) { |
397 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。'); |
|
397 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。'); |
|
398 | 398 | } else { |
399 | 399 | |
400 | 400 | // 必ず規格分類1がセットされている |
@@ -403,36 +403,36 @@ discard block |
||
403 | 403 | if (preg_match('/^\d+$/', $classCategoryId1)) { |
404 | 404 | $ClassCategory1 = $this->classCategoryRepository->find($classCategoryId1); |
405 | 405 | if (!$ClassCategory1) { |
406 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
406 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
407 | 407 | } |
408 | 408 | } else { |
409 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
409 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
410 | 410 | } |
411 | 411 | |
412 | 412 | $ClassCategory2 = null; |
413 | 413 | if ($row['規格分類2(ID)'] != '') { |
414 | 414 | if ($pc->getClassCategory1() != null && $pc->getClassCategory2() == null) { |
415 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)は設定できません。'); |
|
415 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)は設定できません。'); |
|
416 | 416 | } else { |
417 | 417 | if (preg_match('/^\d+$/', $classCategoryId2)) { |
418 | 418 | $ClassCategory2 = $this->classCategoryRepository->find($classCategoryId2); |
419 | 419 | if (!$ClassCategory2) { |
420 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
420 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
421 | 421 | } else { |
422 | 422 | if ($ClassCategory1 && |
423 | 423 | ($ClassCategory1->getClassName()->getId() == $ClassCategory2->getClassName()->getId()) |
424 | 424 | ) { |
425 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。'); |
|
425 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。'); |
|
426 | 426 | } |
427 | 427 | } |
428 | 428 | } else { |
429 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
429 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
430 | 430 | } |
431 | 431 | |
432 | 432 | } |
433 | 433 | } else { |
434 | 434 | if ($pc->getClassCategory1() != null && $pc->getClassCategory2() != null) { |
435 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)に値を設定してください。'); |
|
435 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)に値を設定してください。'); |
|
436 | 436 | } |
437 | 437 | } |
438 | 438 | $ProductClass = $this->createProductClass($row, $Product, $app, $data, $ClassCategory1, $ClassCategory2); |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) { |
444 | 444 | $ProductClass->setDeliveryFee($deliveryFee); |
445 | 445 | } else { |
446 | - $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。'); |
|
446 | + $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。'); |
|
447 | 447 | } |
448 | 448 | } |
449 | 449 | } |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | foreach ($data as $row) { |
534 | 534 | |
535 | 535 | if ($headerSize != count($row)) { |
536 | - $this->addErrors(($data->key() + 1) . '行目のCSVフォーマットが一致しません。'); |
|
536 | + $this->addErrors(($data->key() + 1).'行目のCSVフォーマットが一致しません。'); |
|
537 | 537 | return $this->render($app, $form, $headers); |
538 | 538 | } |
539 | 539 | |
@@ -541,23 +541,23 @@ discard block |
||
541 | 541 | $Category = new Category(); |
542 | 542 | } else { |
543 | 543 | if (!preg_match('/^\d+$/', $row['カテゴリID'])) { |
544 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリIDが存在しません。'); |
|
544 | + $this->addErrors(($data->key() + 1).'行目のカテゴリIDが存在しません。'); |
|
545 | 545 | return $this->render($app, $form, $headers); |
546 | 546 | } |
547 | 547 | $Category = $this->categoryRepository->find($row['カテゴリID']); |
548 | 548 | if (!$Category) { |
549 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリIDが存在しません。'); |
|
549 | + $this->addErrors(($data->key() + 1).'行目のカテゴリIDが存在しません。'); |
|
550 | 550 | return $this->render($app, $form, $headers); |
551 | 551 | } |
552 | 552 | if ($row['カテゴリID'] == $row['親カテゴリID']) { |
553 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリIDと親カテゴリIDが同じです。'); |
|
553 | + $this->addErrors(($data->key() + 1).'行目のカテゴリIDと親カテゴリIDが同じです。'); |
|
554 | 554 | return $this->render($app, $form, $headers); |
555 | 555 | } |
556 | 556 | |
557 | 557 | } |
558 | 558 | |
559 | 559 | if (Str::isBlank($row['カテゴリ名'])) { |
560 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリ名が設定されていません。'); |
|
560 | + $this->addErrors(($data->key() + 1).'行目のカテゴリ名が設定されていません。'); |
|
561 | 561 | return $this->render($app, $form, $headers); |
562 | 562 | } else { |
563 | 563 | $Category->setName(Str::trimAll($row['カテゴリ名'])); |
@@ -566,13 +566,13 @@ discard block |
||
566 | 566 | if ($row['親カテゴリID'] != '') { |
567 | 567 | |
568 | 568 | if (!preg_match('/^\d+$/', $row['親カテゴリID'])) { |
569 | - $this->addErrors(($data->key() + 1) . '行目の親カテゴリIDが存在しません。'); |
|
569 | + $this->addErrors(($data->key() + 1).'行目の親カテゴリIDが存在しません。'); |
|
570 | 570 | return $this->render($app, $form, $headers); |
571 | 571 | } |
572 | 572 | |
573 | 573 | $ParentCategory = $this->categoryRepository->find($row['親カテゴリID']); |
574 | 574 | if (!$ParentCategory) { |
575 | - $this->addErrors(($data->key() + 1) . '行目の親カテゴリIDが存在しません。'); |
|
575 | + $this->addErrors(($data->key() + 1).'行目の親カテゴリIDが存在しません。'); |
|
576 | 576 | return $this->render($app, $form, $headers); |
577 | 577 | } |
578 | 578 | |
@@ -588,7 +588,7 @@ discard block |
||
588 | 588 | } |
589 | 589 | |
590 | 590 | if ($this->appConfig['category_nest_level'] < $Category->getHierarchy()) { |
591 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリが最大レベルを超えているため設定できません。'); |
|
591 | + $this->addErrors(($data->key() + 1).'行目のカテゴリが最大レベルを超えているため設定できません。'); |
|
592 | 592 | return $this->render($app, $form, $headers); |
593 | 593 | } |
594 | 594 | |
@@ -638,7 +638,7 @@ discard block |
||
638 | 638 | throw new NotFoundHttpException(); |
639 | 639 | } |
640 | 640 | |
641 | - $response->setCallback(function () use ($app, $request, $headers) { |
|
641 | + $response->setCallback(function() use ($app, $request, $headers) { |
|
642 | 642 | |
643 | 643 | // ヘッダ行の出力 |
644 | 644 | $row = array(); |
@@ -653,7 +653,7 @@ discard block |
||
653 | 653 | }); |
654 | 654 | |
655 | 655 | $response->headers->set('Content-Type', 'application/octet-stream'); |
656 | - $response->headers->set('Content-Disposition', 'attachment; filename=' . $filename); |
|
656 | + $response->headers->set('Content-Disposition', 'attachment; filename='.$filename); |
|
657 | 657 | $response->send(); |
658 | 658 | |
659 | 659 | return $response; |
@@ -676,7 +676,7 @@ discard block |
||
676 | 676 | if (!empty($this->fileName)) { |
677 | 677 | try { |
678 | 678 | $fs = new Filesystem(); |
679 | - $fs->remove($this->appConfig['csv_temp_realdir'] . '/' . $this->fileName); |
|
679 | + $fs->remove($this->appConfig['csv_temp_realdir'].'/'.$this->fileName); |
|
680 | 680 | } catch (\Exception $e) { |
681 | 681 | // エラーが発生しても無視する |
682 | 682 | } |
@@ -699,10 +699,10 @@ discard block |
||
699 | 699 | protected function getImportData($app, $formFile) |
700 | 700 | { |
701 | 701 | // アップロードされたCSVファイルを一時ディレクトリに保存 |
702 | - $this->fileName = 'upload_' . Str::random() . '.' . $formFile->getClientOriginalExtension(); |
|
702 | + $this->fileName = 'upload_'.Str::random().'.'.$formFile->getClientOriginalExtension(); |
|
703 | 703 | $formFile->move($this->appConfig['csv_temp_realdir'], $this->fileName); |
704 | 704 | |
705 | - $file = file_get_contents($this->appConfig['csv_temp_realdir'] . '/' . $this->fileName); |
|
705 | + $file = file_get_contents($this->appConfig['csv_temp_realdir'].'/'.$this->fileName); |
|
706 | 706 | |
707 | 707 | if ('\\' === DIRECTORY_SEPARATOR && PHP_VERSION_ID >= 70000) { |
708 | 708 | // Windows 環境の PHP7 の場合はファイルエンコーディングを CP932 に合わせる |
@@ -798,8 +798,8 @@ discard block |
||
798 | 798 | if (!$Category) { |
799 | 799 | $this->addErrors(($data->key() + 1).'行目の商品カテゴリ(ID)「'.$category.'」が存在しません。'); |
800 | 800 | } else { |
801 | - foreach($Category->getPath() as $ParentCategory){ |
|
802 | - if (!isset($categoriesIdList[$ParentCategory->getId()])){ |
|
801 | + foreach ($Category->getPath() as $ParentCategory) { |
|
802 | + if (!isset($categoriesIdList[$ParentCategory->getId()])) { |
|
803 | 803 | $ProductCategory = $this->makeProductCategory($Product, $ParentCategory, $rank); |
804 | 804 | $this->entityManager->persist($ProductCategory); |
805 | 805 | $rank++; |
@@ -807,7 +807,7 @@ discard block |
||
807 | 807 | $categoriesIdList[$ParentCategory->getId()] = true; |
808 | 808 | } |
809 | 809 | } |
810 | - if (!isset($categoriesIdList[$Category->getId()])){ |
|
810 | + if (!isset($categoriesIdList[$Category->getId()])) { |
|
811 | 811 | $ProductCategory = $this->makeProductCategory($Product, $Category, $rank); |
812 | 812 | $rank++; |
813 | 813 | $this->em->persist($ProductCategory); |
@@ -862,7 +862,7 @@ discard block |
||
862 | 862 | } |
863 | 863 | } |
864 | 864 | if (!$Tag) { |
865 | - $this->addErrors(($data->key() + 1) . '行目のタグ(ID)「' . $tag_id . '」が存在しません。'); |
|
865 | + $this->addErrors(($data->key() + 1).'行目のタグ(ID)「'.$tag_id.'」が存在しません。'); |
|
866 | 866 | } |
867 | 867 | } |
868 | 868 | } |
@@ -881,17 +881,17 @@ discard block |
||
881 | 881 | |
882 | 882 | |
883 | 883 | if ($row['商品種別(ID)'] == '') { |
884 | - $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が設定されていません。'); |
|
884 | + $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が設定されていません。'); |
|
885 | 885 | } else { |
886 | 886 | if (preg_match('/^\d+$/', $row['商品種別(ID)'])) { |
887 | 887 | $ProductType = $this->productTypeRepository->find($row['商品種別(ID)']); |
888 | 888 | if (!$ProductType) { |
889 | - $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。'); |
|
889 | + $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。'); |
|
890 | 890 | } else { |
891 | 891 | $ProductClass->setProductType($ProductType); |
892 | 892 | } |
893 | 893 | } else { |
894 | - $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。'); |
|
894 | + $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。'); |
|
895 | 895 | } |
896 | 896 | } |
897 | 897 | |
@@ -902,12 +902,12 @@ discard block |
||
902 | 902 | if (preg_match('/^\d+$/', $row['発送日目安(ID)'])) { |
903 | 903 | $DeliveryDate = $this->deliveryDateRepository->find($row['発送日目安(ID)']); |
904 | 904 | if (!$DeliveryDate) { |
905 | - $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。'); |
|
905 | + $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。'); |
|
906 | 906 | } else { |
907 | 907 | $ProductClass->setDeliveryDate($DeliveryDate); |
908 | 908 | } |
909 | 909 | } else { |
910 | - $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。'); |
|
910 | + $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。'); |
|
911 | 911 | } |
912 | 912 | } |
913 | 913 | |
@@ -918,19 +918,19 @@ discard block |
||
918 | 918 | } |
919 | 919 | |
920 | 920 | if ($row['在庫数無制限フラグ'] == '') { |
921 | - $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。'); |
|
921 | + $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。'); |
|
922 | 922 | } else { |
923 | 923 | if ($row['在庫数無制限フラグ'] == (string) Constant::DISABLED) { |
924 | 924 | $ProductClass->setStockUnlimited(Constant::DISABLED); |
925 | 925 | // 在庫数が設定されていなければエラー |
926 | 926 | if ($row['在庫数'] == '') { |
927 | - $this->addErrors(($data->key() + 1) . '行目の在庫数が設定されていません。'); |
|
927 | + $this->addErrors(($data->key() + 1).'行目の在庫数が設定されていません。'); |
|
928 | 928 | } else { |
929 | 929 | $stock = str_replace(',', '', $row['在庫数']); |
930 | 930 | if (preg_match('/^\d+$/', $stock) && $stock >= 0) { |
931 | 931 | $ProductClass->setStock($stock); |
932 | 932 | } else { |
933 | - $this->addErrors(($data->key() + 1) . '行目の在庫数は0以上の数値を設定してください。'); |
|
933 | + $this->addErrors(($data->key() + 1).'行目の在庫数は0以上の数値を設定してください。'); |
|
934 | 934 | } |
935 | 935 | } |
936 | 936 | |
@@ -938,7 +938,7 @@ discard block |
||
938 | 938 | $ProductClass->setStockUnlimited(Constant::ENABLED); |
939 | 939 | $ProductClass->setStock(null); |
940 | 940 | } else { |
941 | - $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。'); |
|
941 | + $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。'); |
|
942 | 942 | } |
943 | 943 | } |
944 | 944 | |
@@ -947,7 +947,7 @@ discard block |
||
947 | 947 | if (preg_match('/^\d+$/', $saleLimit) && $saleLimit >= 0) { |
948 | 948 | $ProductClass->setSaleLimit($saleLimit); |
949 | 949 | } else { |
950 | - $this->addErrors(($data->key() + 1) . '行目の販売制限数は0以上の数値を設定してください。'); |
|
950 | + $this->addErrors(($data->key() + 1).'行目の販売制限数は0以上の数値を設定してください。'); |
|
951 | 951 | } |
952 | 952 | } |
953 | 953 | |
@@ -956,18 +956,18 @@ discard block |
||
956 | 956 | if (preg_match('/^\d+$/', $price01) && $price01 >= 0) { |
957 | 957 | $ProductClass->setPrice01($price01); |
958 | 958 | } else { |
959 | - $this->addErrors(($data->key() + 1) . '行目の通常価格は0以上の数値を設定してください。'); |
|
959 | + $this->addErrors(($data->key() + 1).'行目の通常価格は0以上の数値を設定してください。'); |
|
960 | 960 | } |
961 | 961 | } |
962 | 962 | |
963 | 963 | if ($row['販売価格'] == '') { |
964 | - $this->addErrors(($data->key() + 1) . '行目の販売価格が設定されていません。'); |
|
964 | + $this->addErrors(($data->key() + 1).'行目の販売価格が設定されていません。'); |
|
965 | 965 | } else { |
966 | 966 | $price02 = str_replace(',', '', $row['販売価格']); |
967 | 967 | if (preg_match('/^\d+$/', $price02) && $price02 >= 0) { |
968 | 968 | $ProductClass->setPrice02($price02); |
969 | 969 | } else { |
970 | - $this->addErrors(($data->key() + 1) . '行目の販売価格は0以上の数値を設定してください。'); |
|
970 | + $this->addErrors(($data->key() + 1).'行目の販売価格は0以上の数値を設定してください。'); |
|
971 | 971 | } |
972 | 972 | } |
973 | 973 | |
@@ -976,7 +976,7 @@ discard block |
||
976 | 976 | if (preg_match('/^\d+$/', $delivery_fee) && $delivery_fee >= 0) { |
977 | 977 | $ProductClass->setDeliveryFee($delivery_fee); |
978 | 978 | } else { |
979 | - $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。'); |
|
979 | + $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。'); |
|
980 | 980 | } |
981 | 981 | } |
982 | 982 | |
@@ -1009,17 +1009,17 @@ discard block |
||
1009 | 1009 | $ProductClass->setProduct($Product); |
1010 | 1010 | |
1011 | 1011 | if ($row['商品種別(ID)'] == '') { |
1012 | - $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が設定されていません。'); |
|
1012 | + $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が設定されていません。'); |
|
1013 | 1013 | } else { |
1014 | 1014 | if (preg_match('/^\d+$/', $row['商品種別(ID)'])) { |
1015 | 1015 | $ProductType = $this->productTypeRepository->find($row['商品種別(ID)']); |
1016 | 1016 | if (!$ProductType) { |
1017 | - $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。'); |
|
1017 | + $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。'); |
|
1018 | 1018 | } else { |
1019 | 1019 | $ProductClass->setProductType($ProductType); |
1020 | 1020 | } |
1021 | 1021 | } else { |
1022 | - $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。'); |
|
1022 | + $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。'); |
|
1023 | 1023 | } |
1024 | 1024 | } |
1025 | 1025 | |
@@ -1028,12 +1028,12 @@ discard block |
||
1028 | 1028 | if (preg_match('/^\d+$/', $row['規格分類1(ID)'])) { |
1029 | 1029 | $ClassCategory = $this->classCategoryRepository->find($row['規格分類1(ID)']); |
1030 | 1030 | if (!$ClassCategory) { |
1031 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
1031 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
1032 | 1032 | } else { |
1033 | 1033 | $ProductClass->setClassCategory1($ClassCategory); |
1034 | 1034 | } |
1035 | 1035 | } else { |
1036 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
1036 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
1037 | 1037 | } |
1038 | 1038 | } |
1039 | 1039 | |
@@ -1041,12 +1041,12 @@ discard block |
||
1041 | 1041 | if (preg_match('/^\d+$/', $row['規格分類2(ID)'])) { |
1042 | 1042 | $ClassCategory = $this->classCategoryRepository->find($row['規格分類2(ID)']); |
1043 | 1043 | if (!$ClassCategory) { |
1044 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
1044 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
1045 | 1045 | } else { |
1046 | 1046 | $ProductClass->setClassCategory2($ClassCategory); |
1047 | 1047 | } |
1048 | 1048 | } else { |
1049 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
1049 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
1050 | 1050 | } |
1051 | 1051 | } |
1052 | 1052 | |
@@ -1054,12 +1054,12 @@ discard block |
||
1054 | 1054 | if (preg_match('/^\d+$/', $row['発送日目安(ID)'])) { |
1055 | 1055 | $DeliveryDate = $this->deliveryDateRepository->find($row['発送日目安(ID)']); |
1056 | 1056 | if (!$DeliveryDate) { |
1057 | - $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。'); |
|
1057 | + $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。'); |
|
1058 | 1058 | } else { |
1059 | 1059 | $ProductClass->setDeliveryDate($DeliveryDate); |
1060 | 1060 | } |
1061 | 1061 | } else { |
1062 | - $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。'); |
|
1062 | + $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。'); |
|
1063 | 1063 | } |
1064 | 1064 | } |
1065 | 1065 | |
@@ -1070,19 +1070,19 @@ discard block |
||
1070 | 1070 | } |
1071 | 1071 | |
1072 | 1072 | if ($row['在庫数無制限フラグ'] == '') { |
1073 | - $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。'); |
|
1073 | + $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。'); |
|
1074 | 1074 | } else { |
1075 | 1075 | if ($row['在庫数無制限フラグ'] == (string) Constant::DISABLED) { |
1076 | 1076 | $ProductClass->setStockUnlimited(Constant::DISABLED); |
1077 | 1077 | // 在庫数が設定されていなければエラー |
1078 | 1078 | if ($row['在庫数'] == '') { |
1079 | - $this->addErrors(($data->key() + 1) . '行目の在庫数が設定されていません。'); |
|
1079 | + $this->addErrors(($data->key() + 1).'行目の在庫数が設定されていません。'); |
|
1080 | 1080 | } else { |
1081 | 1081 | $stock = str_replace(',', '', $row['在庫数']); |
1082 | 1082 | if (preg_match('/^\d+$/', $stock) && $stock >= 0) { |
1083 | 1083 | $ProductClass->setStock($row['在庫数']); |
1084 | 1084 | } else { |
1085 | - $this->addErrors(($data->key() + 1) . '行目の在庫数は0以上の数値を設定してください。'); |
|
1085 | + $this->addErrors(($data->key() + 1).'行目の在庫数は0以上の数値を設定してください。'); |
|
1086 | 1086 | } |
1087 | 1087 | } |
1088 | 1088 | |
@@ -1090,7 +1090,7 @@ discard block |
||
1090 | 1090 | $ProductClass->setStockUnlimited(Constant::ENABLED); |
1091 | 1091 | $ProductClass->setStock(null); |
1092 | 1092 | } else { |
1093 | - $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。'); |
|
1093 | + $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。'); |
|
1094 | 1094 | } |
1095 | 1095 | } |
1096 | 1096 | |
@@ -1099,7 +1099,7 @@ discard block |
||
1099 | 1099 | if (preg_match('/^\d+$/', $saleLimit) && $saleLimit >= 0) { |
1100 | 1100 | $ProductClass->setSaleLimit($saleLimit); |
1101 | 1101 | } else { |
1102 | - $this->addErrors(($data->key() + 1) . '行目の販売制限数は0以上の数値を設定してください。'); |
|
1102 | + $this->addErrors(($data->key() + 1).'行目の販売制限数は0以上の数値を設定してください。'); |
|
1103 | 1103 | } |
1104 | 1104 | } |
1105 | 1105 | |
@@ -1108,18 +1108,18 @@ discard block |
||
1108 | 1108 | if (preg_match('/^\d+$/', $price01) && $price01 >= 0) { |
1109 | 1109 | $ProductClass->setPrice01($price01); |
1110 | 1110 | } else { |
1111 | - $this->addErrors(($data->key() + 1) . '行目の通常価格は0以上の数値を設定してください。'); |
|
1111 | + $this->addErrors(($data->key() + 1).'行目の通常価格は0以上の数値を設定してください。'); |
|
1112 | 1112 | } |
1113 | 1113 | } |
1114 | 1114 | |
1115 | 1115 | if ($row['販売価格'] == '') { |
1116 | - $this->addErrors(($data->key() + 1) . '行目の販売価格が設定されていません。'); |
|
1116 | + $this->addErrors(($data->key() + 1).'行目の販売価格が設定されていません。'); |
|
1117 | 1117 | } else { |
1118 | 1118 | $price02 = str_replace(',', '', $row['販売価格']); |
1119 | 1119 | if (preg_match('/^\d+$/', $price02) && $price02 >= 0) { |
1120 | 1120 | $ProductClass->setPrice02($price02); |
1121 | 1121 | } else { |
1122 | - $this->addErrors(($data->key() + 1) . '行目の販売価格は0以上の数値を設定してください。'); |
|
1122 | + $this->addErrors(($data->key() + 1).'行目の販売価格は0以上の数値を設定してください。'); |
|
1123 | 1123 | } |
1124 | 1124 | } |
1125 | 1125 |