我将项目作为可配置项目导入 Magento。当我创建库存项目时,一切都很好,但是当项目被更新时,它会产生这个错误:
SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '315-315' for key 'UNQ_TEST1_CATALOG_PRODUCT_SUPER_LINK_PRODUCT_ID_PARENT_ID'
我正在使用的代码块是这样的:
//Try and open for edit.
$product = Mage::getModel('catalog/product')->loadByAttribute('sku', $stockCode);
//Fetch data from XML and update stock item.
$productData = $this->getProductDataArray($stockItem, $stockCategoryList);
$this->saveStockItem($stockItem, $product, 'configurable', $setId, $productData);
//Reopen the stock item to get any changes.
$product = Mage::getModel('catalog/product')->loadByAttribute('sku', $stockCode);
//Build a list of existing attributes for this config product so we can check existing attributes etc.
$existingConfigAttributes = $this->getExistingConfigurableAttributes($product);
$configurableProductsData = $this->getConfigurableProductData($product, $existingConfigAttributes);
$configurableAttributesData = $this->getConfigurableAttributeProductData($product, $existingConfigAttributes);
//Set the configurable attribute information
if ($configurableProductsData != null)
$product->setConfigurableProductsData($configurableProductsData);
if ($configurableAttributesData != null)
$product->setConfigurableAttributesData($configurableAttributesData);
$product->setCanSaveConfigurableAttributes(1);
$product->save();
第一次一切正常,我的可配置项目按预期工作。但是,如果我再次运行它,它会落在$product->save();
. 我假设它试图将其视为新项目而不是现有项目,因此试图插入不应插入的位置。
$this->saveStockItem()
包含:
$stockCode = (string)$stockItem->STOCK_CODE;
if ($product)
{
$productId = $product->getId();
}
$mc = new Mage_Catalog_Model_Product_Api();
if ($this->validId($productId))
{
$mc->update($productId, $productData);
return $productId;
}
else
{
return $mc->create($type, $setId, $stockCode, $productData);
}
我知道我可以更新这样的项目,但这不会更新我需要添加到可配置项目的额外属性。
更新此信息的正确方法是什么?