2013-01-16 55 views
1

我是Magento Extension Development的新手,想知道从扩展内部创建类别和子类别的最佳方法。我正在开发的扩展是同步ERP系统的产品数据。该扩展使用系统 - >配置对话框来保存连接到服务器的数据(user/pwd/etc)。现在我想知道,如果最好通过Ajax请求连接或使用Soap调用。对于约700种产品,Ajax在这种情况下似乎非常缓慢。所以你有什么建议?在Magento Extension中创建类别和子类别

此外,我有点卡住创建类别和子类别。有没有简单的方法来做到这一点。我发现了一些创建类别的东西,然后使用 - > move()函数。此外,我想知道该类别的“路径”是否对创建子类别至关重要。

回答

0
public static function addCatalogCategory($item, $id, $storeId = 0) { 
    /* 
    * resource for checking category exists 
    * http://fishpig.co.uk/blog/load-a-category-or-product-by-an-attribute.html 
    */ 
    $categories = Mage::getResourceModel('catalog/category_collection'); 
    // Select which fields to load into the category 
    // * will load all fields but it is possible to pass an array of 
    // select fields to load 
    $categories->addAttributeToSelect('*'); 
    // Ensure the category is active 
    $categories->addAttributeToFilter('is_active', 1); 
    // Add Name filter 
    $categories->addAttributeToFilter('name', $item->GROUP_NAME); 
    // Limit the collection to 1 result 
    $categories->setCurPage(1)->setPageSize(1); 
    // Load the collection 
    $categories->load(); 

    if ($categories->getFirstItem()->getId()) { 
     $category = $categories->getFirstItem(); 
     return $category->getId(); 
    } 

    /* get category object model */ 
    $category = Mage::getModel('catalog/category'); 
    $category->setStoreId($storeId); 
    $data = array(); 
    /* if the node is root */ 
    if (Heliumv_Synchronization_Helper_Data::xml_attribute($item, 'type') == 'root') { 
     $data['category']['parent'] = 2; // 2 top level id 
    } else { 
     /* is node/leaf */ 
     $data['category']['parent'] = $id; 
    } 

    $data['general']['path'] = $item->PARENT_ID; 
    $data['general']['name'] = $item->GROUP_NAME; 
    $data['general']['meta_title'] = ""; 
    $data['general']['meta_description'] = ""; 
    $data['general']['is_active'] = "1"; 
    $data['general']['url_key'] = ""; 
    $data['general']['display_mode'] = "PRODUCTS"; 
    $data['general']['is_anchor'] = 0; 

    /* add data to category model */ 
    $category->addData($data['general']); 

    if (!$category->getId()) { 
     $parentId = $data['category']['parent']; 
     if (!$parentId) { 
      if ($storeId) { 
       $parentId = Mage::app()->getStore($storeId)->getRootCategoryId(); 
      } else { 
       $parentId = Mage_Catalog_Model_Category::TREE_ROOT_ID; 
      } 
     } 
     $parentCategory = Mage::getModel('catalog/category')->load($parentId); 
     $category->setPath($parentCategory->getPath()); 
    } 

    $category->setAttributeSetId($category->getDefaultAttributeSetId()); 

    try { 
     $category->save(); 

     return $category->getId(); 
    } catch (Exception $e) { 
     echo Mage::log($e->getMessage()); 
    } 
} 

我希望这可以帮助别人。欢呼声

0

你应该使用Magento模型:

与子目录创建类别:

/** 
* After installation system has two categories: root one with ID:1 and Default category with ID:2 
*/ 
/** @var $category1 Mage_Catalog_Model_Category */ 
$category1 = Mage::getModel('catalog/category'); 
$category1->setName('Category 1') 
    ->setParentId(2) 
    ->setLevel(2) 
    ->setAvailableSortBy('name') 
    ->setDefaultSortBy('name') 
    ->setIsActive(true) 
    ->setPosition(1) 
    ->save(); 

/** @var $category2 Mage_Catalog_Model_Category */ 
$category2 = Mage::getModel('catalog/category'); 
$category2->setName('Category 1.1') 
    ->setParentId($category1->getId()) // set parent category which was created above 
    ->setLevel(3) 
    ->setAvailableSortBy('name') 
    ->setDefaultSortBy('name') 
    ->setIsActive(true) 
    ->setIsAnchor(true) 
    ->setPosition(1) 
    ->save(); 
+0

谢谢您的回复。这实际上是有帮助的。如何检查类别是否已经存在?你有什么建议吗?目前我正在使用getTreeModel()方法来读取所有ID /名称。 –

+0

还有一件事,我认为当ParentId()被传递时,路径会自动设置? –

+0

路径将在Mage_Catalog_Model_Resource_Category :: _ afterSave() – Zyava