我正在为我的一个客户从oscommerce导入数据到magento。
已成功导入包括产品,类别和客户在内的所有数据。剩下的最后一件事是在设置类别后添加产品分类号。
我需要以下步骤:
导入产品 - >为产品分配类别 - >从oscommerce表中设置产品排序顺序(显示顺序)。
我搜索了很多,但是我无法找到在特定类别中设置产品排序顺序的方法。
任何帮助都将深受赞赏。
答案 0 :(得分:1)
默认情况下,产品在类别中的排序顺序由“管理类别”部分的“类别产品”标签中的位置列确定。
我猜您需要批量更新每个类别的产品的排序顺序。假设您可能需要编写一个php脚本,可以使用sql查询更新数据库中表'catalog_category_product'中的'position'列。
文件可以保存在magento安装的根目录下。下面的代码只是为了给出一个想法,你需要修改/添加/删除代码,以便根据你的要求完成它,然后从浏览器中点击文件。
<?php
$mageFilename = 'app/Mage.php';
require_once $mageFilename;
Mage::setIsDeveloperMode(true);
ini_set('display_errors', 1);
umask(0);
Mage::app('admin');
Mage::register('isSecureArea', 1);
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
set_time_limit(0);
ini_set('memory_limit','1024M');
/***************** UTILITY FUNCTIONS ********************/
function _getConnection($type = 'core_read'){
return Mage::getSingleton('core/resource')->getConnection($type);
}
function _getTableName($tableName){
return Mage::getSingleton('core/resource')->getTableName($tableName);
}
function _updatePosition($position, $categoryId, $productId){
$connection = _getConnection('core_write');
$sql = "UPDATE " . _getTableName('catalog_category_product') . " ccp
SET ccp.position = ?
WHERE ccp.category_id = ?
AND ccp.product_id = ?";
$connection->query($sql, array($position, $categoryId, $productId));
}
希望这有帮助!