运行一遍如下代码可以使全站所有商品的价格变成原来的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();
}
时间: 2024-10-28 20:02:38