我正在使用 Akeneo 2.2.8 并尝试使用akeneo.storage.pre_save
-event 将原始产品数据与提供的新数据进行比较。我通过订阅akeneo.storage.pre_save
-event 来做到这一点:
在event_subscribers.yml
:
parameters:
vendor.bundle.event_subscriber.product_save.class: Vendor\Bundle\CustomBundle\EventSubscriber\ProductSaveSubscriber
services:
vendor.bundle.event_subscriber.product_save:
class: '%vendor.bundle.event_subscriber.product_save.class%'
arguments:
- '@pim_catalog.repository.product'
tags:
- { name: kernel.event_listener, event: akeneo.storage.pre_save, method: onPreSave, priority: 255 }
在ProductSaveSubscriber.php
:
/**
* @var ProductRepositoryInterface
*/
protected $productRepository;
public function __construct(ProductRepositoryInterface $productRepository)
{
$this->productRepository = $productRepository;
}
public function onPreSave(GenericEvent $event)
{
/** @var Product $subject */
$subject = $event->getSubject();
if ($subject instanceof Product) {
$originalProduct = $this->productRepository->findOneByIdentifier($subject->getIdentifier());
foreach ($subject->getAttributes() as $attribute) {
if ($attribute->getReadOnly()) {
echo "{$attribute->getCode()} : {$subject->getValue($attribute->getCode())}\n";
echo "{$attribute->getCode()} : {$originalProduct->getValue($attribute->getCode())}\n";
}
}
}
}
现在,当我运行此代码时,我希望第二个echo
语句提供原始数据(因为我已经重新加载了该数据)。但是,我从存储库加载的原始产品也有新数据。
这里要注意的另一件事是,如果我添加die()
- 语句,则数据不会存储在数据库中。因此,存储库似乎返回了内存模型或类似的东西。
谁能指出我正确的方向?还是我使用错误的方法将新输入的数据与现有数据进行比较?