Пример #1
0
 /**
  * @param Customer $entity
  */
 protected function processChangeAttributes(Customer $entity)
 {
     foreach ($entity->getAddresses() as $address) {
         $address->setOriginId(null);
     }
     $entity->setWebsite($entity->getStore()->getWebsite());
     $entity->setCreatedIn($entity->getStore()->getName());
     $this->setDefaultGroup($entity);
 }