前提・実現したいこと
OS MAC Big Sur
MAMP
ECcube 4.0.5
お世話になっております。
ECcubeにて新規テーブルを作成しました。
新規テーブルにproduct_imageのテーブルを結合して、画像を表示したいと思っております。
結合の際に、関連づけの処理を行いましたが、dumpを見るとnullになっておりこれを解消しようと現在悩んでおります。
よろしければアドバイスをいただければ幸いです。
その他値段の取得、カテゴリの取得を考え、productClass,PloductCategoryのテーブルは
結合しております。エラーは出ておりませんが一旦は保留の状態です。
発生している問題・エラーメッセージ
dumpをした際、該当のpruduct_imageのテーブルがnullになっている。 array:5 [▼ 0 => SquareOrderDetail {#4385 ▼ -id: 8 -order_id: "uDdP8Dd7MPywLKNuDonee2Yitd4F" -square_quantity: "5" -update_date: DateTime @1630988033 {#4357 ▶} -square_product_id: "28" -ProductImage: null -ProductCategory: PersistentCollection {#4387 ▶} -ProductClass: PersistentCollection {#4741 ▶} -AnnotationReader: AnnotationReader {#592 ▶} } 1 => SquareOrderDetail {#4738 ▶} 2 => SquareOrderDetail {#4732 ▶} 3 => SquareOrderDetail {#4726 ▶} 4 => SquareOrderDetail {#4361 ▶}
該当のソースコード
PHP
1// entity 2// ProductImageと紐付け 3 /** 4 * @var \Eccube\Entity\Product 5 * 6 * @ORM\ManyToOne(targetEntity="Eccube\Entity\ProductImage", inversedBy="ProductImage") 7 * @ORM\JoinColumns({ 8 * @ORM\JoinColumn(name="product_image", referencedColumnName="id") 9 * }) 10 * 11 */ 12 private $ProductImage; 13 14 15 // ProductCategoryと連携 紐付けのみ 16 /** 17 * @var \Doctrine\Common\Collections\Collection 18 * 19 * @ORM\OneToMany(targetEntity="Eccube\Entity\ProductCategory", mappedBy="Product") 20 * @ORM\JoinColumns({ 21 * @ORM\JoinColumn(name="product_category_id", referencedColumnName="id") 22 * }) 23 * 24 */ 25 private $ProductCategory; 26 27 /** 28 * Get productCategory. 29 * 30 * @return \Eccube\Entity\ProductCategory|null 31 */ 32 public function getProductCategory() 33 { 34 return $this->ProductCategory; 35 } 36 37 /** 38 * Set productCategry. 39 * 40 * @param \Eccube\Entity\ProductCategory|null $productCategory 41 * 42 * @return SquareOrderDetail 43 */ 44 public function setProductCategory(\Eccube\Entity\ProductCategory $productCategory = null) 45 { 46 $this->ProductCategory = $productCategory; 47 48 return $this; 49 } 50 51 // ProductClassと連携 紐付け 52 /** 53 * @var \Doctrine\Common\Collections\Collection 54 * 55 * @ORM\OneToMany(targetEntity="Eccube\Entity\ProductClass", mappedBy="Product") 56 * @ORM\JoinColumns({ 57 * @ORM\JoinColumn(name="product_class_id", referencedColumnName="id") 58 * }) 59 */ 60 private $ProductClass; 61 62 /** 63 * Get productClass. 64 * 65 * @return \Eccube\Entity\ProductClass|null 66 */ 67 public function getProductClass() 68 { 69 return $this->ProductClass; 70 } 71 72 /** 73 * Set productClass. 74 * 75 * @param \Eccube\Entity\ProductClass|null $productClass 76 * 77 * @return SquareOrderDetail 78 */ 79 public function setProductClass(\Eccube\Entity\ProductClass $productClass = null) 80 { 81 $this->ProductClass = $productClass; 82 83 return $this; 84 }
PHP
1// repository 2/** 3 * findSquareQuantity 4 * 5 * @return SquareOrderDetail 6 */ 7 public function findSquareQuantity() { 8 9 $qb = $this->createQueryBuilder('so'); 10 $qb->select('so') 11 ->innerJoin('so.ProductClass', 'sp') 12 ->innerJoin('so.ProductCategory', 'pc') 13 // ->innerJoin('pc.ProductImage', 'pi') 14 // ->where('pc.product_id = :product_id') 15 // ->setParameter('product_id', $productClass) 16 // ->where('so.square_quantity = :square_quantity') 17 // ->setParameter(':square_quantity', $square_quantity) 18 // square_quantityを販売個数順に並べる 19 ->orderBy('so.square_quantity', 'DESC') 20 ->distinct() 21 // ->groupBy('so.square_quantity') 22 ->setMaxResults(5); 23 // var_dump($qb); 24 25 $QuantityResult = $qb 26 ->getQuery() 27 ->getResult(); 28 // var_dump($QuantityResult); 29 30 return $QuantityResult; 31 32 }
試したこと
①試しにrepositoryに
->innerJoin('pc.ProductImage', 'pi')
を記述してみましたが、
[Semantical Error] line 0, col 152 near 'pi ORDER BY so.square_quantity': Error: Class Eccube\Entity\ProductCategory has no association named ProductImage
のエラーが発生しており、こちらを調査しています。
②リレーションの設定部分
@ORM\OneToMany(targetEntity="Eccube\Entity\ProductCategory", mappedBy="Product")
を
@ORM\ManyToOne(targetEntity="Eccube\Entity\ProductCategory")
に変更し試してみましたが、変わらずでした。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー