在Magento中从一个表到另一个表获取数据

时间:2013-09-27 10:18:51

标签: magento

我在magento创建了新的模块名称手工T恤设计管理。它有T恤设计和T恤设计师。设计师将从管理面板添加他们的设计。所以他们添加T恤设计,我需要选择T恤设计师使用T恤设计师表,换句话说我需要设计师的身份,并希望将其存储在T恤设计中。我怎么能在MAGENTO做到这一点?

请帮忙 。 提前致谢

1 个答案:

答案 0 :(得分:0)

您可以调用该事件

<catalog_product_prepare_save>

在Observer中,您可以拥有数据值

例如

public function saveProductBrand($observer) {
    $product = $observer->getProduct();
    $categoryIds = $product->getCategoryIds();
    if (isset($categoryIds)) {
        foreach ($categoryIds as $categoryId) {
            $isBrandCategory = Mage::getModel('brands/navigation')->isBrandCategory($categoryId);
            if ($isBrandCategory)
                $brandCategories[] = $categoryId;
        }

您可以拥有look at HERE