Skip to content

Commit

Permalink
0065610: Bugfixes for Variant Set import
Browse files Browse the repository at this point in the history
* fixed Variant Sets getting wrong article number
* fixed Variant Set causing Exception on import due to mainDetail not created
  • Loading branch information
Stefan Mueller committed Sep 9, 2020
1 parent fc702d2 commit d0db263
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Services/Helper/ShopwareArticleHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -1135,10 +1135,11 @@ public function importArticle(
}
catch(OptimisticLockException $e) {
$this->logger->error('Error storing base article values!');
continue;
} catch (ORMException $e) {
$this->logger->error('Error storing base article values!');
continue;
}
continue;
}

$shopwareArticle->setSupplier($this->getSupplier($valueArticle->getManufacturer()));
Expand Down

0 comments on commit d0db263

Please sign in to comment.