/**
  * Populate global product
  *
  * @param \Magento\CatalogImportExport\Model\Import\Product $product
  * @return $this
  */
 protected function populateGlobalProduct($product)
 {
     foreach ($this->import->getProductWebsites($product->getSku()) as $websiteId) {
         foreach ($this->websitesToStoreIds[$websiteId] as $storeId) {
             $this->storesCache[$storeId] = true;
             if (!$this->isGlobalScope($storeId)) {
                 $this->addProductToImport($product, $storeId);
                 $this->entityStoresToCheckOverridden[] = $this->connection->quoteInto('(store_id = ?', $storeId) . $this->connection->quoteInto(' AND entity_id = ?)', $product->getId());
             }
         }
     }
     return $this;
 }