Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ImportExport: Easier debugging #324

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions app/code/Mage/ImportExport/Model/Import/Entity/Product.php
Original file line number Diff line number Diff line change
Expand Up @@ -746,6 +746,19 @@ protected function _saveLinks()
} else {
$linkedId = $this->_oldSku[$linkedSku]['entity_id'];
}

if ($linkedId == null) {
// Import file links to a SKU which is skipped for some reasons -> leads to a "NULL"
// link causing fatal errors.
Mage::logException(
new Exception(
sprintf('WARNING: Orphaned link skipped: From SKU %s (ID %d) to SKU %s, Link type id: %d',
$sku, $productId, $linkedSku, $linkId)
)
);
continue;
}

$linkKey = "{$productId}-{$linkedId}-{$linkId}";

if (!isset($linkRows[$linkKey])) {
Expand Down