@@ -600,6 +600,9 @@ discard block |
||
600 | 600 | /** |
601 | 601 | * 登録、更新時のエラー画面表示 |
602 | 602 | * |
603 | + * @param Application $app |
|
604 | + * @param boolean $not_product_class |
|
605 | + * @param \Symfony\Component\Form\FormInterface $classForm |
|
603 | 606 | */ |
604 | 607 | protected function render($app, $Product, $ProductClass, $not_product_class, $classForm, $error = null) |
605 | 608 | { |
@@ -651,6 +654,7 @@ discard block |
||
651 | 654 | |
652 | 655 | /** |
653 | 656 | * 規格1と規格2を組み合わせた商品規格を作成 |
657 | + * @param Application $app |
|
654 | 658 | */ |
655 | 659 | private function createProductClasses($app, Product $Product, ClassName $ClassName1 = null, ClassName $ClassName2 = null) |
656 | 660 | { |
@@ -738,6 +742,7 @@ discard block |
||
738 | 742 | * |
739 | 743 | * @param $productClassDest ProductClass コピー先となる商品規格 |
740 | 744 | * @param $productClassOrig ProductClass コピー元となる商品規格 |
745 | + * @param Application $app |
|
741 | 746 | */ |
742 | 747 | private function setDefaultProductClass($app, $productClassDest, $productClassOrig) { |
743 | 748 | $productClassDest->setDeliveryDuration($productClassOrig->getDeliveryDuration()); |
@@ -661,6 +661,8 @@ discard block |
||
661 | 661 | /** |
662 | 662 | * 登録、更新時のエラー画面表示 |
663 | 663 | * |
664 | + * @param Application $app |
|
665 | + * @param \Symfony\Component\Form\FormInterface $form |
|
664 | 666 | */ |
665 | 667 | protected function render($app, $form, $headers) |
666 | 668 | { |
@@ -692,6 +694,7 @@ discard block |
||
692 | 694 | * アップロードされたCSVファイルの行ごとの処理 |
693 | 695 | * |
694 | 696 | * @param $formFile |
697 | + * @param Application $app |
|
695 | 698 | * @return CsvImportService |
696 | 699 | */ |
697 | 700 | protected function getImportData($app, $formFile) |
@@ -769,6 +772,8 @@ discard block |
||
769 | 772 | |
770 | 773 | /** |
771 | 774 | * 商品カテゴリの削除、登録 |
775 | + * @param Application $app |
|
776 | + * @param CsvImportService $data |
|
772 | 777 | */ |
773 | 778 | protected function createProductCategory($row, Product $Product, $app, $data) |
774 | 779 | { |
@@ -868,6 +873,8 @@ discard block |
||
868 | 873 | |
869 | 874 | /** |
870 | 875 | * 商品規格分類1、商品規格分類2がnullとなる商品規格情報を作成 |
876 | + * @param Application $app |
|
877 | + * @param CsvImportService $data |
|
871 | 878 | */ |
872 | 879 | protected function createProductClass($row, Product $Product, $app, $data, $ClassCategory1 = null, $ClassCategory2 = null) |
873 | 880 | { |
@@ -1000,6 +1007,8 @@ discard block |
||
1000 | 1007 | |
1001 | 1008 | /** |
1002 | 1009 | * 商品規格情報を更新 |
1010 | + * @param Application $app |
|
1011 | + * @param CsvImportService $data |
|
1003 | 1012 | */ |
1004 | 1013 | protected function updateProductClass($row, Product $Product, ProductClass $ProductClass, $app, $data) |
1005 | 1014 | { |
@@ -1136,6 +1145,7 @@ discard block |
||
1136 | 1145 | /** |
1137 | 1146 | * 登録、更新時のエラー画面表示 |
1138 | 1147 | * |
1148 | + * @param string $message |
|
1139 | 1149 | */ |
1140 | 1150 | protected function addErrors($message) |
1141 | 1151 | { |
@@ -1209,6 +1219,7 @@ discard block |
||
1209 | 1219 | * ProductCategory作成 |
1210 | 1220 | * @param \Eccube\Entity\Product $Product |
1211 | 1221 | * @param \Eccube\Entity\Category $Category |
1222 | + * @param integer $sortNo |
|
1212 | 1223 | * @return ProductCategory |
1213 | 1224 | */ |
1214 | 1225 | private function makeProductCategory($Product, $Category, $sortNo) |