diff --git a/src/OroCRM/Bundle/MagentoBundle/ImportExport/Strategy/CartStrategy.php b/src/OroCRM/Bundle/MagentoBundle/ImportExport/Strategy/CartStrategy.php index 340c5902992..7f28621e375 100644 --- a/src/OroCRM/Bundle/MagentoBundle/ImportExport/Strategy/CartStrategy.php +++ b/src/OroCRM/Bundle/MagentoBundle/ImportExport/Strategy/CartStrategy.php @@ -46,7 +46,9 @@ protected function beforeProcessEntity($entity) */ protected function afterProcessEntity($entity) { - $this->updateRemovedCartItems($entity); + if ($entity->getStatus()->getName() === CartStatus::STATUS_OPEN) { + $this->updateRemovedCartItems($entity); + } if (!$this->hasContactInfo($entity)) { return null;