gpt4 book ai didi

symfony - Akeneo:创建具有属性的新变体组

转载 作者:行者123 更新时间:2023-12-03 22:01:42 24 4
gpt4 key购买 nike

我想在 Akeneo 中创建一个具有一些固定属性的新变体组来“模拟”产品系列的行为。不幸的是,我不知道如何获取带有一些空值属性的 ProductTemplate

当我尝试下面的代码时,在 Akeneo GUI 中打开创建的变体组后出现错误:

Error: Option "attributes" must only contains instances of "Pim\Bundle\CatalogBundle\Entity\Attribute", got "Pim\Bundle\EnrichBundle\Form\Type\AvailableAttributesType"

我的代码是这样的:

    $groupType = $this->groupManager
->getGroupTypeRepository()
->findOneBy(['code' => 'VARIANT']);
$group = $this->groupFactory->createGroup($groupType);
$group->setCode('MY_VARIANT_GROUP');

$attributes = array($this->attributeRepository->findOneByIdentifier('AXIS_ATTRIBUTE'));
$group->setAxisAttributes($attributes);

// ??? How can I create a new product value?
$productValue1 = new ProductValue();
$productValue1->setId('PREDEFINED_ATTRIBUTE1');
$productValue1->setAttribute($this->attributeRepository->findOneByIdentifier('PREDEFINED_ATTRIBUTE1'));

$productTemplate = new ProductTemplate();
$productTemplate->setValuesData(array($productValue1));

$group->setProductTemplate($productTemplate);
$this->groupSaver->save($group);

最佳答案

我建议您使用 Pim\Bundle\CatalogBu​​ndle\Builder\ProductTemplateBuilder 创建产品模板并将其添加到产品模板中。

这将确保使用空产品值正确创建产品模板。

关于symfony - Akeneo:创建具有属性的新变体组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31848237/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com