@@ 336-340 (lines=5) @@ | ||
333 | $tmpProductClass = $ProductClass; |
|
334 | } |
|
335 | ||
336 | if (count($addProductClasses) == 0) { |
|
337 | // 対象がなければエラー |
|
338 | $error = array('message' => '商品規格が選択されていません。'); |
|
339 | return $this->render($app, $Product, $tmpProductClass, true, $form, $error); |
|
340 | } |
|
341 | ||
342 | // 選択された商品規格を登録 |
|
343 | $this->insertProductClass($app, $Product, $addProductClasses); |
|
@@ 395-399 (lines=5) @@ | ||
392 | $tempProductClass = $ProductClass; |
|
393 | } |
|
394 | ||
395 | if (count($checkProductClasses) == 0) { |
|
396 | // 対象がなければエラー |
|
397 | $error = array('message' => '商品規格が選択されていません。'); |
|
398 | return $this->render($app, $Product, $tempProductClass, false, $form, $error); |
|
399 | } |
|
400 | ||
401 | ||
402 | // 登録対象と更新対象の行か判断する |