magento -- 修改所有商品的价格为原来的1.2倍示例
运行一遍如下代码可以使全站所有商品的价格变成原来的1.2倍
$collection = Mage::getResourceModel('catalog/product_collection')->load(); foreach($collection as $items){ $product = Mage::getModel('catalog/product')->load($items->getId()); $product->setPrice(round($product->getPrice()*1.2)); if($product->getSpecialPrice()){ $product->setSpecialPrice(round($product->getSpecialPrice()*1.2)); } $product->save(); }
最后更新:2017-04-02 06:51:30