2014-07-03 76 views
1

我想在自定義模塊安裝時創建產品,我可以實現這一點嗎? 這是我的自定義模塊的安裝腳本如何使用自定義模塊創建產品?

$this->startSetup(); 
$product= new Mage_Catalog_Model_Product(); 
$product->setSku("basic-plan"); 
$product->setName("Basic Plan"); 
$product->setDescription("Description for the product"); 
$product->setShortDescription("Short Description for the product"); 
$product->setPrice(20); 
$product->setTypeId('simple'); 
$product->setAttributeSetId(4); // enter the catalog attribute set id here 
$product->setCategoryIds(array(16)); // id of categories 
$product->setWeight(1.0); 
$product->setTaxClassId(0); // taxable goods 
$product->setVisibility(1); // catalog, search 
$product->setStatus(1); // enabled 
$product->setStoreIDs(array(1)); 
$product->setStockData(
    array(
     'is_in_stock' => 1, 
     'qty' => 1000, 
    'manage_stock' => 1 
    ) 
); 
$product->setIsRecurring('1'); 
$product->setRecurringProfile(array(
     'schedule_description' => 'Basic Plan', 
     'period_unit' => 'week', 
     'period_frequency' => 1 

    )); 
// assign product to the default website 
//$product->setWebsiteIds(array(Mage::app()->getStore(true)->getWebsite()->getId())); 
$product->setWebsiteIds(array(1)); 

$product->save(); 

/*Subscription Plan Products Ends Here*/ 


$this->endSetup(); 

運行安裝程序,但我使用這個腳本

回答

0

你好請試試這個代碼

<?php 
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID); 
$product = Mage::getModel('catalog/product'); 
// if(!$product->getIdBySku('testsku61')): 
$product 
// ->setStoreId(1) //you can set data in store scope 
    ->setWebsiteIds(array(1)) //website ID the product is assigned to, as an array 
    ->setAttributeSetId(9) //ID of a attribute set named 'default' 
    ->setTypeId('simple') //product type 
    ->setCreatedAt(strtotime('now')) //product creation time 
// ->setUpdatedAt(strtotime('now')) //product update time 
    ->setSku('testsku61') //SKU 
    ->setName('test product21') //product name 
    ->setWeight(4.0000) 
    ->setStatus(1) //product status (1 - enabled, 2 - disabled) 
    ->setTaxClassId(4) //tax class (0 - none, 1 - default, 2 - taxable, 4 - shipping) 
    ->setVisibility(Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH) //catalog and search visibility 
    ->setManufacturer(28) //manufacturer id 
    ->setColor(24) 
    ->setNewsFromDate('06/26/2014') //product set as new from 
    ->setNewsToDate('06/30/2014') //product set as new to 
    ->setCountryOfManufacture('AF') //country of manufacture (2-letter country code) 
    ->setPrice(11.22) //price in form 11.22 
    ->setCost(22.33) //price in form 11.22 
    ->setSpecialPrice(00.44) //special price in form 11.22 
    ->setSpecialFromDate('06/1/2014') //special price from (MM-DD-YYYY) 
    ->setSpecialToDate('06/30/2014') //special price to (MM-DD-YYYY) 
    ->setMsrpEnabled(1) //enable MAP 
    ->setMsrpDisplayActualPriceType(1) //display actual price (1 - on gesture, 2 - in cart, 3 - before order confirmation, 4 - use config) 
    ->setMsrp(99.99) //Manufacturer's Suggested Retail Price 
    ->setMetaTitle('test meta title 2') 
    ->setMetaKeyword('test meta keyword 2') 
    ->setMetaDescription('test meta description 2') 
    ->setDescription('This is a long description') 
    ->setShortDescription('This is a short description') 
    ->setMediaGallery (array('images'=>array(), 'values'=>array())) //media gallery initialization 
    ->addImageToMediaGallery('media/catalog/product/1/0/10243-1.png', array('image','thumbnail','small_image'), false, false) //assigning image, thumb and small image to media gallery 
    ->setStockData(array(
      'use_config_manage_stock' => 0, //'Use config settings' checkbox 
      'manage_stock'=>1, //manage stock 
      'min_sale_qty'=>1, //Minimum Qty Allowed in Shopping Cart 
      'max_sale_qty'=>2, //Maximum Qty Allowed in Shopping Cart 
      'is_in_stock' => 1, //Stock Availability 
      'qty' => 999 //qty 
     ) 
    ) 
    ->setCategoryIds(array(3, 10)); //assign product to categories 
$product->save(); 
//endif; 
}catch(Exception $e){ 
    Mage::log($e->getMessage()); 
}  
+0

我已經嘗試感到無法創建產品這一點,它的工作,它節省了SKU,產品類型,類別,但它沒有名稱,價格和其他 –