作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 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\CatalogBundle\Builder\ProductTemplateBuilder
创建产品模板并将其添加到产品模板中。
这将确保使用空产品值正确创建产品模板。
关于symfony - Akeneo:创建具有属性的新变体组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31848237/
我是一名优秀的程序员,十分优秀!