protected function processResponseData($response)
 {
     foreach ($this->listingsProducts as $listingProduct) {
         if (isset($response['skus'][$listingProduct->getId() . '-id'])) {
             continue;
         }
         $this->getLogger()->logListingProductMessage($listingProduct, 'New SKU was not added', Ess_M2ePro_Model_Log_Abstract::TYPE_ERROR, Ess_M2ePro_Model_Log_Abstract::PRIORITY_MEDIUM);
         unset($this->listingsProducts[$listingProduct->getId()]);
     }
     parent::processResponseData($response);
 }
Ejemplo n.º 2
0
 protected function processResponseData($response)
 {
     $this->responseBody = $response;
     parent::processResponseData($response);
 }