3

Magento1.5.1で次のコードを使用して製品を作成しようとしました。製品はデータベースに保存されていますが、バックエンド製品グリッドには表示されません。製品ビューのURLを呼び出すと、名前、説明などの一部のフィールドが入力されません(参照:NOK)。

$product = Mage::getModel('catalog/product');

$product->setSku("ABC123") // OK
    ->setName("Type 7 Widget") // NOK
    ->setDescription("This widget will give you years of trouble-free widgeting.") // NOK
    ->setShortDescription("High-end widget.") // NOK
    ->setPrice(70.50) // OK
    ->setTypeId('simple') // OK
    ->setAttributeSetId('14') // need to look this up // OK
    ->setCategoryIds("3,7") // need to look these up // OK
    ->setWeight(1.0) // OK
    ->setTaxClassId(1) //taxable goods // ?
    ->setVisibility(4) // catalog, search // NOK
    ->setStatus(Mage_Catalog_Model_Product_Status::STATUS_ENABLED); // enabled // NOK

$product->setWebsiteIds(array(Mage::app()->getStore(true)->getWebsite()->getId()));

$product->save();

これはデータベースに保存された製品ですprint_r($product->debug());

[type_id] => simple
[sku] => ABC123
[has_options] => 0
[required_options] => 0
[created_at] => 2012-04-26 12:57:22
[updated_at] => 2012-04-26 12:57:22
[weight] => 1
[url_path] => .html
[price] => 70.5000
[enable_googlecheckout] => 1
[name] => Type 7 Widget
[meta_title] => Type 7 Widget
[meta_description] => Type 7 Widget, Fotos
[url_key] => type-7-widget
[options_container] => container2
[delivery_time] => 2-3 Tage
[generate_meta] => 0
[status] => 1
[tax_class_id] => 1
[visibility] => 4
[description] => This widget will give you years of trouble-free widgeting.
[short_description] => High-end widget.
[meta_keyword] => Type 7 Widget, Fotos
[media_gallery] => Array
    (
        [images] => Array
            (
            )

        [values] => Array
            (
            )

    )

[tier_price] => Array
    (
    )

[tier_price_changed] => 0
[stock_item (Mage_CatalogInventory_Model_Stock_Item)] => Array
    (
        [product_id] => 158
        [product_name] => Type 7 Widget
        [store_id] => 1
        [product_type_id] => simple
        [product_status_changed] => 1
    )

[is_in_stock] => 1
[is_salable] => 1
)

どんな助けでも素晴らしいでしょう!


解決

次のコードを使用して、製品を保存するストアを指定します。

Mage::app()->setCurrentStore(Mage::getModel('core/store')->load(Mage_Core_Model_App::ADMIN_STORE_ID));
4

2 に答える 2

3

製品を保存しません。

追加:

try{
    $product->save();
} catch (Exception $e) {
    echo $e->getMessage();
}
于 2012-04-26T14:17:53.353 に答える
3

マルチストアを設定する場合は、ウェブサイトを設定することを忘れないでください。

于 2012-04-26T15:14:39.250 に答える