在Magento中更新产品数量和价格的最快方法?

时间:2015-10-22 13:16:09

标签: php xml magento product

嘿伙计们,我正试图通过从xml中获取来保存magento中的产品。但是我找不到快速更新价格和数量的好方法。请访问:

  public function productUpdate($productSkus = array(), $data = array(), $storeId = 1) {
        $ids = Mage::getModel('catalog/product')
                ->getCollection()
                ->addAttributeToFilter('sku', $productSkus)
                ->getAllIds();

        Mage::getSingleton('catalog/product_action')->updateAttributes(
                $ids, $data, $storeId
        );
    }

但不够好并且在更新数量时它给我一个错误。它与$ product-> save()没有区别; 我需要快速升级这个2属性。人们请帮助。我的公司对我的态度非常糟糕。谢谢。

1 个答案:

答案 0 :(得分:0)

你看过这个扩展了吗? 通过此扩展,您可以相应地映射字段,并且您可以轻松导入所有必需的信息以及更新现有信息。它不是最便宜的,但绝对值得长期。

Auto Product Import with XML and Webservice