@@ 145-150 (lines=6) @@ | ||
142 | } |
|
143 | } |
|
144 | ||
145 | if (Str::isBlank($row['商品名'])) { |
|
146 | $this->addErrors(($data->key() + 1) . '行目の商品名が設定されていません。'); |
|
147 | return $this->render($app, $form, $headers, $this->productTwig); |
|
148 | } else { |
|
149 | $Product->setName(Str::trimAll($row['商品名'])); |
|
150 | } |
|
151 | ||
152 | if (Str::isNotBlank($row['ショップ用メモ欄'])) { |
|
153 | $Product->setNote(Str::trimAll($row['ショップ用メモ欄'])); |
|
@@ 476-481 (lines=6) @@ | ||
473 | ||
474 | } |
|
475 | ||
476 | if (Str::isBlank($row['カテゴリ名'])) { |
|
477 | $this->addErrors(($data->key() + 1) . '行目のカテゴリ名が設定されていません。'); |
|
478 | return $this->render($app, $form, $headers, $this->categoryTwig); |
|
479 | } else { |
|
480 | $Category->setName(Str::trimAll($row['カテゴリ名'])); |
|
481 | } |
|
482 | ||
483 | if ($row['親カテゴリID'] != '') { |
|
484 |