0

プロダクト ビルダーで 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>
4

2 に答える 2

2

最新の sylius dev に従うには、Products モデルを拡張し、__construct を以下のコードに置き換える必要があります

public function __construct()
{
    parent::__construct();

    $this
        ->setVariants(new ArrayCollection())
        ->setMasterVariant(new YourCustomVariant())
    ;
}
于 2014-06-16T13:28:35.070 に答える