プロダクト ビルダーで Sylius プロダクトを作成しようとしています。製品をビルドしようとすると、次のエラーが発生します。
Found entity of type Sylius\Bundle\CoreBundle\Model\Variant on association
Shopfish\Bundle\CoreBundle\Entity\Product#variants, but expecting
Shopfish\Bundle\CoreBundle\Entity\Variant
以下のコード スニペットを使用して製品を構築しようとしています。
/**
* @Route("/admin/products/create", name="sf_product_create")
* @Template()
*/
public function createAction(Request $request)
{
$product = $this->get('sylius.builder.product')
->create('My Lovely Product')
->setPrice(18790)
->setDescription('Such a lovely product.')
->addProperty('color', 'Red')
->save()
;
return array('product' => $product);
}
私はそのSyliusProduct
ようにオーバーライドしました:
use Sylius\Bundle\CoreBundle\Model\Product as BaseProduct;
class Product extends BaseProduct
{
protected $resource; // going to do something with this later on.
}
はSyliusVariant
同様の方法でオーバーライドされています。
use Sylius\Bundle\CoreBundle\Model\Variant as BaseVariant;
class Variant extends BaseVariant {
protected $salePrice;
// ... + getSalePrice() & setSalePrice()
}
sylius.yml
独自のクラスを使用するように構成ファイルを更新しました。
sylius_product:
classes:
product:
model: Shopfish\Bundle\CoreBundle\Entity\Product
controller: Sylius\Bundle\CoreBundle\Controller\ProductController
repository: Sylius\Bundle\CoreBundle\Repository\ProductRepository
form: Sylius\Bundle\CoreBundle\Form\Type\ProductType
sylius_variable_product:
classes:
variant:
model: Shopfish\Bundle\CoreBundle\Entity\Variant
repository: Sylius\Bundle\CoreBundle\Repository\VariantRepository
form: Sylius\Bundle\CoreBundle\Form\Type\VariantType
Sylius
自分のインスタンスを適切に期待しているのに、関連付けにバリアントを使用しているのはなぜVariant
ですか?
編集
これが私の製品マッピングです:
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping
http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
<entity name="Shopfish\Bundle\CoreBundle\Entity\Product" table="sylius_product">
<one-to-many field="variants" target-entity="Shopfish\Bundle\CoreBundle\Entity\Variant" mapped-by="product">
<cascade>
<cascade-all />
</cascade>
</one-to-many>
</entity>
</doctrine-mapping>