多网店下修改价格倍数

来源:互联网 发布:数据透视图显示合计数 编辑:程序博客网 时间:2024/04/27 20:20
1.新建一个page2{{block type="catalog/product_list" name="fdfsfd" template="ter/ter.phtml"}}3新建ter/ter.phtml文件里面包含如下代码:getStoreId();Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);//$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(); } //Mage::app()->setCurrentStore($currentStore);?>4执行这个page。