@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | $pathType = PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION; |
90 | 90 | } |
91 | 91 | |
92 | - $pathExpression = new PathExpression(PathExpression::TYPE_STATE_FIELD | PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, $rootAlias, $identifierFieldName); |
|
92 | + $pathExpression = new PathExpression(PathExpression::TYPE_STATE_FIELD|PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, $rootAlias, $identifierFieldName); |
|
93 | 93 | $pathExpression->type = $pathType; |
94 | 94 | |
95 | 95 | $count = $this->_getQuery()->getHint(self::HINT_PAGINATOR_ID_COUNT); |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | array($pathExpression) |
101 | 101 | ); |
102 | 102 | $expression = new InExpression($arithmeticExpression); |
103 | - $expression->literals[] = new InputParameter(":" . self::PAGINATOR_ID_ALIAS); |
|
103 | + $expression->literals[] = new InputParameter(":".self::PAGINATOR_ID_ALIAS); |
|
104 | 104 | |
105 | 105 | } else { |
106 | 106 | $expression = new NullComparisonExpression($pathExpression); |
@@ -69,7 +69,7 @@ |
||
69 | 69 | } |
70 | 70 | |
71 | 71 | $pathExpression = new PathExpression( |
72 | - PathExpression::TYPE_STATE_FIELD | PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, $rootAlias, |
|
72 | + PathExpression::TYPE_STATE_FIELD|PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, $rootAlias, |
|
73 | 73 | $identifierFieldName |
74 | 74 | ); |
75 | 75 | $pathExpression->type = $pathType; |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | ); |
94 | 94 | |
95 | 95 | $pathExpression = new PathExpression( |
96 | - PathExpression::TYPE_STATE_FIELD | PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, |
|
96 | + PathExpression::TYPE_STATE_FIELD|PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, |
|
97 | 97 | $rootAlias, |
98 | 98 | $identifier |
99 | 99 | ); |
@@ -104,13 +104,13 @@ discard block |
||
104 | 104 | |
105 | 105 | if (isset($AST->orderByClause)) { |
106 | 106 | foreach ($AST->orderByClause->orderByItems as $item) { |
107 | - if ( ! $item->expression instanceof PathExpression) { |
|
107 | + if (!$item->expression instanceof PathExpression) { |
|
108 | 108 | continue; |
109 | 109 | } |
110 | 110 | |
111 | 111 | $AST->selectClause->selectExpressions[] = new SelectExpression( |
112 | 112 | $this->createSelectExpressionItem($item->expression), |
113 | - '_dctrn_ord' . $this->_aliasCounter++ |
|
113 | + '_dctrn_ord'.$this->_aliasCounter++ |
|
114 | 114 | ); |
115 | 115 | } |
116 | 116 | } |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | && isset($queryComponents[$expression->identificationVariable])) { |
146 | 146 | $queryComponent = $queryComponents[$expression->identificationVariable]; |
147 | 147 | if (isset($queryComponent['parent']) |
148 | - && $queryComponent['relation']['type'] & ClassMetadataInfo::TO_MANY) { |
|
148 | + && $queryComponent['relation']['type']&ClassMetadataInfo::TO_MANY) { |
|
149 | 149 | throw new \RuntimeException("Cannot select distinct identifiers from query with LIMIT and ORDER BY on a column from a fetch joined to-many association. Use output walkers."); |
150 | 150 | } |
151 | 151 | } |
@@ -20,7 +20,6 @@ |
||
20 | 20 | |
21 | 21 | use Doctrine\DBAL\Types\Type; |
22 | 22 | use Doctrine\ORM\Mapping\ClassMetadataInfo; |
23 | -use Doctrine\ORM\ORMException; |
|
24 | 23 | use Doctrine\ORM\Query; |
25 | 24 | use Doctrine\ORM\Query\AST\Functions\IdentityFunction; |
26 | 25 | use Doctrine\ORM\Query\AST\PathExpression; |
@@ -44,9 +44,9 @@ |
||
44 | 44 | */ |
45 | 45 | public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker) |
46 | 46 | { |
47 | - return 'ROW_NUMBER() OVER(' . trim($sqlWalker->walkOrderByClause( |
|
47 | + return 'ROW_NUMBER() OVER('.trim($sqlWalker->walkOrderByClause( |
|
48 | 48 | $this->orderByClause |
49 | - )) . ')'; |
|
49 | + )).')'; |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
@@ -209,8 +209,8 @@ discard block |
||
209 | 209 | $sqlIdentifier = $this->getSQLIdentifier($AST); |
210 | 210 | |
211 | 211 | if ($hasOrderBy) { |
212 | - $orderGroupBy = ' GROUP BY ' . implode(', ', $sqlIdentifier); |
|
213 | - $sqlIdentifier[] = 'MIN(' . $this->walkResultVariable('dctrn_rownum') . ') AS dctrn_minrownum'; |
|
212 | + $orderGroupBy = ' GROUP BY '.implode(', ', $sqlIdentifier); |
|
213 | + $sqlIdentifier[] = 'MIN('.$this->walkResultVariable('dctrn_rownum').') AS dctrn_minrownum'; |
|
214 | 214 | } |
215 | 215 | |
216 | 216 | // Build the counter query |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | ); |
222 | 222 | |
223 | 223 | if ($hasOrderBy) { |
224 | - $sql .= $orderGroupBy . $outerOrderBy; |
|
224 | + $sql .= $orderGroupBy.$outerOrderBy; |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | // Apply the limit and offset. |
@@ -368,7 +368,7 @@ discard block |
||
368 | 368 | { |
369 | 369 | // If the sql statement has an order by clause, we need to wrap it in a new select distinct |
370 | 370 | // statement |
371 | - if (! $orderByClause instanceof OrderByClause) { |
|
371 | + if (!$orderByClause instanceof OrderByClause) { |
|
372 | 372 | return $sql; |
373 | 373 | } |
374 | 374 | |
@@ -404,7 +404,7 @@ discard block |
||
404 | 404 | = array(); |
405 | 405 | |
406 | 406 | // Generate DQL alias -> SQL table alias mapping |
407 | - foreach(array_keys($this->rsm->aliasMap) as $dqlAlias) { |
|
407 | + foreach (array_keys($this->rsm->aliasMap) as $dqlAlias) { |
|
408 | 408 | $dqlAliasToClassMap[$dqlAlias] = $class = $this->queryComponents[$dqlAlias]['metadata']; |
409 | 409 | $dqlAliasToSqlTableAliasMap[$dqlAlias] = $this->getSQLTableAlias($class->getTableName(), $dqlAlias); |
410 | 410 | } |
@@ -413,7 +413,7 @@ discard block |
||
413 | 413 | $fieldSearchPattern = '/(?<![a-z0-9_])%s\.%s(?![a-z0-9_])/i'; |
414 | 414 | |
415 | 415 | // Generate search patterns for each field's path expression in the order by clause |
416 | - foreach($this->rsm->fieldMappings as $fieldAlias => $fieldName) { |
|
416 | + foreach ($this->rsm->fieldMappings as $fieldAlias => $fieldName) { |
|
417 | 417 | $dqlAliasForFieldAlias = $this->rsm->columnOwnerMap[$fieldAlias]; |
418 | 418 | $class = $dqlAliasToClassMap[$dqlAliasForFieldAlias]; |
419 | 419 | |
@@ -449,7 +449,7 @@ discard block |
||
449 | 449 | $replacements[] = $fieldAlias; |
450 | 450 | } |
451 | 451 | |
452 | - foreach($orderByClause->orderByItems as $orderByItem) { |
|
452 | + foreach ($orderByClause->orderByItems as $orderByItem) { |
|
453 | 453 | // Walk order by item to get string representation of it |
454 | 454 | $orderByItemString = $this->walkOrderByItem($orderByItem); |
455 | 455 |
@@ -18,19 +18,10 @@ |
||
18 | 18 | use Doctrine\DBAL\Platforms\PostgreSqlPlatform; |
19 | 19 | use Doctrine\DBAL\Platforms\SQLAnywherePlatform; |
20 | 20 | use Doctrine\DBAL\Platforms\SQLServerPlatform; |
21 | -use Doctrine\ORM\Query\AST\ArithmeticExpression; |
|
22 | -use Doctrine\ORM\Query\AST\ArithmeticFactor; |
|
23 | -use Doctrine\ORM\Query\AST\ArithmeticTerm; |
|
24 | -use Doctrine\ORM\Query\AST\Literal; |
|
25 | 21 | use Doctrine\ORM\Query\AST\OrderByClause; |
26 | -use Doctrine\ORM\Query\AST\OrderByItem; |
|
27 | 22 | use Doctrine\ORM\Query\AST\PartialObjectExpression; |
28 | -use Doctrine\ORM\Query\AST\PathExpression; |
|
29 | 23 | use Doctrine\ORM\Query\AST\SelectExpression; |
30 | 24 | use Doctrine\ORM\Query\AST\SelectStatement; |
31 | -use Doctrine\ORM\Query\AST\SimpleArithmeticExpression; |
|
32 | -use Doctrine\ORM\Query\Expr\OrderBy; |
|
33 | -use Doctrine\ORM\Query\Expr\Select; |
|
34 | 25 | use Doctrine\ORM\Query\SqlWalker; |
35 | 26 | |
36 | 27 | /** |
@@ -91,7 +91,7 @@ |
||
91 | 91 | } |
92 | 92 | } |
93 | 93 | |
94 | - $recursive = function ($config, $space = ' ') use (&$recursive, $output) { |
|
94 | + $recursive = function($config, $space = ' ') use (&$recursive, $output) { |
|
95 | 95 | foreach ($config as $key => $item) { |
96 | 96 | if (is_array($item)) { |
97 | 97 | $space = ' '; |
@@ -792,6 +792,7 @@ |
||
792 | 792 | * ProductCategory作成 |
793 | 793 | * @param \Eccube\Entity\Product $Product |
794 | 794 | * @param \Eccube\Entity\Category $Category |
795 | + * @param integer $count |
|
795 | 796 | * @return \Eccube\Entity\ProductCategory |
796 | 797 | */ |
797 | 798 | private function createProductCategory($Product, $Category, $count) |
@@ -320,7 +320,7 @@ discard block |
||
320 | 320 | } |
321 | 321 | |
322 | 322 | $extension = $image->getClientOriginalExtension(); |
323 | - $filename = date('mdHis') . uniqid('_') . '.' . $extension; |
|
323 | + $filename = date('mdHis').uniqid('_').'.'.$extension; |
|
324 | 324 | $image->move($this->appConfig['image_temp_realdir'], $filename); |
325 | 325 | $files[] = $filename; |
326 | 326 | } |
@@ -399,7 +399,7 @@ discard block |
||
399 | 399 | $form = $builder->getForm(); |
400 | 400 | |
401 | 401 | if (!$has_class) { |
402 | - $ProductClass->setStockUnlimited((boolean)$ProductClass->getStockUnlimited()); |
|
402 | + $ProductClass->setStockUnlimited((boolean) $ProductClass->getStockUnlimited()); |
|
403 | 403 | $form['class']->setData($ProductClass); |
404 | 404 | } |
405 | 405 | |
@@ -481,8 +481,8 @@ discard block |
||
481 | 481 | $Categories = $form->get('Category')->getData(); |
482 | 482 | $categoriesIdList = array(); |
483 | 483 | foreach ($Categories as $Category) { |
484 | - foreach($Category->getPath() as $ParentCategory){ |
|
485 | - if (!isset($categoriesIdList[$ParentCategory->getId()])){ |
|
484 | + foreach ($Category->getPath() as $ParentCategory) { |
|
485 | + if (!isset($categoriesIdList[$ParentCategory->getId()])) { |
|
486 | 486 | $ProductCategory = $this->createProductCategory($Product, $ParentCategory, $count); |
487 | 487 | $this->entityManager->persist($ProductCategory); |
488 | 488 | $count++; |
@@ -491,7 +491,7 @@ discard block |
||
491 | 491 | $categoriesIdList[$ParentCategory->getId()] = true; |
492 | 492 | } |
493 | 493 | } |
494 | - if (!isset($categoriesIdList[$Category->getId()])){ |
|
494 | + if (!isset($categoriesIdList[$Category->getId()])) { |
|
495 | 495 | $ProductCategory = $this->createProductCategory($Product, $Category, $count); |
496 | 496 | $this->entityManager->persist($ProductCategory); |
497 | 497 | $count++; |
@@ -513,7 +513,7 @@ discard block |
||
513 | 513 | $this->entityManager->persist($ProductImage); |
514 | 514 | |
515 | 515 | // 移動 |
516 | - $file = new File($this->appConfig['image_temp_realdir'] . '/' . $add_image); |
|
516 | + $file = new File($this->appConfig['image_temp_realdir'].'/'.$add_image); |
|
517 | 517 | $file->move($this->appConfig['image_save_realdir']); |
518 | 518 | } |
519 | 519 | |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | |
534 | 534 | // 削除 |
535 | 535 | $fs = new Filesystem(); |
536 | - $fs->remove($this->appConfig['image_save_realdir'] . '/' . $delete_image); |
|
536 | + $fs->remove($this->appConfig['image_save_realdir'].'/'.$delete_image); |
|
537 | 537 | } |
538 | 538 | $this->entityManager->persist($Product); |
539 | 539 | $this->entityManager->flush(); |
@@ -668,7 +668,7 @@ discard block |
||
668 | 668 | foreach ($deleteImages as $deleteImage) { |
669 | 669 | try { |
670 | 670 | $fs = new Filesystem(); |
671 | - $fs->remove($this->appConfig['image_save_realdir'] . '/' . $deleteImage); |
|
671 | + $fs->remove($this->appConfig['image_save_realdir'].'/'.$deleteImage); |
|
672 | 672 | } catch (\Exception $e) { |
673 | 673 | // エラーが発生しても無視する |
674 | 674 | } |
@@ -742,10 +742,10 @@ discard block |
||
742 | 742 | |
743 | 743 | // 画像ファイルを新規作成 |
744 | 744 | $extension = pathinfo($Image->getFileName(), PATHINFO_EXTENSION); |
745 | - $filename = date('mdHis') . uniqid('_') . '.' . $extension; |
|
745 | + $filename = date('mdHis').uniqid('_').'.'.$extension; |
|
746 | 746 | try { |
747 | 747 | $fs = new Filesystem(); |
748 | - $fs->copy($this->appConfig['image_save_realdir'] . '/' . $Image->getFileName(), $this->appConfig['image_save_realdir'] . '/' . $filename); |
|
748 | + $fs->copy($this->appConfig['image_save_realdir'].'/'.$Image->getFileName(), $this->appConfig['image_save_realdir'].'/'.$filename); |
|
749 | 749 | } catch (\Exception $e) { |
750 | 750 | // エラーが発生しても無視する |
751 | 751 | } |
@@ -825,7 +825,7 @@ discard block |
||
825 | 825 | $em->getConfiguration()->setSQLLogger(null); |
826 | 826 | |
827 | 827 | $response = new StreamedResponse(); |
828 | - $response->setCallback(function () use ($app, $request) { |
|
828 | + $response->setCallback(function() use ($app, $request) { |
|
829 | 829 | |
830 | 830 | // CSV種別を元に初期化. |
831 | 831 | $this->csvExportService->initCsvType(CsvType::CSV_TYPE_PRODUCT); |
@@ -865,7 +865,7 @@ discard block |
||
865 | 865 | // データ行の出力. |
866 | 866 | $this->csvExportService->setExportQueryBuilder($qb); |
867 | 867 | |
868 | - $this->csvExportService->exportData(function ($entity, CsvExportService $csvService) use ($app, $request) { |
|
868 | + $this->csvExportService->exportData(function($entity, CsvExportService $csvService) use ($app, $request) { |
|
869 | 869 | $Csvs = $csvService->getCsvs(); |
870 | 870 | |
871 | 871 | /** @var $Product \Eccube\Entity\Product */ |
@@ -908,9 +908,9 @@ discard block |
||
908 | 908 | }); |
909 | 909 | |
910 | 910 | $now = new \DateTime(); |
911 | - $filename = 'product_' . $now->format('YmdHis') . '.csv'; |
|
911 | + $filename = 'product_'.$now->format('YmdHis').'.csv'; |
|
912 | 912 | $response->headers->set('Content-Type', 'application/octet-stream'); |
913 | - $response->headers->set('Content-Disposition', 'attachment; filename=' . $filename); |
|
913 | + $response->headers->set('Content-Disposition', 'attachment; filename='.$filename); |
|
914 | 914 | $response->send(); |
915 | 915 | |
916 | 916 | log_info('商品CSV出力ファイル名', array($filename)); |
@@ -1155,11 +1155,11 @@ |
||
1155 | 1155 | } |
1156 | 1156 | |
1157 | 1157 | /** |
1158 | - * ProductCategory作成 |
|
1159 | - * @param \Eccube\Entity\Product $Product |
|
1160 | - * @param \Eccube\Entity\Category $Category |
|
1161 | - * @return ProductCategory |
|
1162 | - */ |
|
1158 | + * ProductCategory作成 |
|
1159 | + * @param \Eccube\Entity\Product $Product |
|
1160 | + * @param \Eccube\Entity\Category $Category |
|
1161 | + * @return ProductCategory |
|
1162 | + */ |
|
1163 | 1163 | private function makeProductCategory($Product, $Category, $rank) |
1164 | 1164 | { |
1165 | 1165 | $ProductCategory = new ProductCategory(); |
@@ -679,6 +679,8 @@ discard block |
||
679 | 679 | /** |
680 | 680 | * 登録、更新時のエラー画面表示 |
681 | 681 | * |
682 | + * @param Application $app |
|
683 | + * @param \Symfony\Component\Form\FormInterface $form |
|
682 | 684 | */ |
683 | 685 | protected function render($app, $form, $headers) |
684 | 686 | { |
@@ -710,6 +712,7 @@ discard block |
||
710 | 712 | * アップロードされたCSVファイルの行ごとの処理 |
711 | 713 | * |
712 | 714 | * @param $formFile |
715 | + * @param Application $app |
|
713 | 716 | * @return CsvImportService |
714 | 717 | */ |
715 | 718 | protected function getImportData($app, $formFile) |
@@ -787,6 +790,8 @@ discard block |
||
787 | 790 | |
788 | 791 | /** |
789 | 792 | * 商品カテゴリの削除、登録 |
793 | + * @param Application $app |
|
794 | + * @param CsvImportService $data |
|
790 | 795 | */ |
791 | 796 | protected function createProductCategory($row, Product $Product, $app, $data) |
792 | 797 | { |
@@ -886,6 +891,8 @@ discard block |
||
886 | 891 | |
887 | 892 | /** |
888 | 893 | * 商品規格分類1、商品規格分類2がnullとなる商品規格情報を作成 |
894 | + * @param Application $app |
|
895 | + * @param CsvImportService $data |
|
889 | 896 | */ |
890 | 897 | protected function createProductClass($row, Product $Product, $app, $data, $ClassCategory1 = null, $ClassCategory2 = null) |
891 | 898 | { |
@@ -1027,6 +1034,8 @@ discard block |
||
1027 | 1034 | |
1028 | 1035 | /** |
1029 | 1036 | * 商品規格情報を更新 |
1037 | + * @param Application $app |
|
1038 | + * @param CsvImportService $data |
|
1030 | 1039 | */ |
1031 | 1040 | protected function updateProductClass($row, Product $Product, ProductClass $ProductClass, $app, $data) |
1032 | 1041 | { |
@@ -1173,6 +1182,7 @@ discard block |
||
1173 | 1182 | /** |
1174 | 1183 | * 登録、更新時のエラー画面表示 |
1175 | 1184 | * |
1185 | + * @param string $message |
|
1176 | 1186 | */ |
1177 | 1187 | protected function addErrors($message) |
1178 | 1188 | { |
@@ -1247,6 +1257,7 @@ discard block |
||
1247 | 1257 | * ProductCategory作成 |
1248 | 1258 | * @param \Eccube\Entity\Product $Product |
1249 | 1259 | * @param \Eccube\Entity\Category $Category |
1260 | + * @param integer $rank |
|
1250 | 1261 | * @return ProductCategory |
1251 | 1262 | */ |
1252 | 1263 | private function makeProductCategory($Product, $Category, $rank) |
@@ -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 |
@@ -39,7 +39,7 @@ |
||
39 | 39 | |
40 | 40 | if (is_writable($logDir)) { |
41 | 41 | if (file_exists($installLog) && !is_writable($installLog)) { |
42 | - die($installLog . ' の書込権限を変更して下さい。'); |
|
42 | + die($installLog.' の書込権限を変更して下さい。'); |
|
43 | 43 | } |
44 | 44 | // install step2 でログディレクトリに書き込み権限が付与されればログ出力を開始する. |
45 | 45 | $app->register(new \Silex\Provider\MonologServiceProvider(), array( |