首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >以编程方式添加的捆绑包产品未显示在前端

以编程方式添加的捆绑包产品未显示在前端
EN

Stack Overflow用户
提问于 2011-05-28 18:39:50
回答 2查看 6.4K关注 0票数 7

我正在尝试从PHP脚本将捆绑的产品插入Magento数据库。有问题的版本是Community 1.5.1.0。

我尝试了问题"Programmatically add Bundle Products in Magento, using the SKU / ID of Simple Items“中描述的方法。插入的产品在管理部分显示得很好-我可以编辑它们,添加新的选项和选择等。但是,无论我如何尝试,它们都不会显示在Magento前端-例如,重建索引或从后端重新保存它们。通过管理界面添加包可以很好地工作。

在对数据库进行了一些深入研究之后,我注意到在使用我的脚本时,catalog_product_index_pricecatalog_product_index_price_bundle_idx表中没有必要的条目,而通过后端添加包通常会更新索引。就这些表而言,重新索引只是忽略添加的捆绑产品。

我翻遍了Magento源文件,找不到任何关于我做错了什么的线索。所有缓存都被禁用,选择都是现成的,我试图包括我在研究Magento在后端插入产品时发送的POST请求时挖掘出的所有数据。

下面是我用于测试的完整脚本,以及底部注释掉的一些孤注一掷的尝试:

代码语言:javascript
复制
$magentoPath = '/home/nikola/bin/magento-1.5/';
require_once($magentoPath . 'includes/config.php');
require_once($magentoPath . 'app/Mage.php');

$storeID = 1;
$websiteIDs = array(1);

$mageObj = Mage::app()->setCurrentStore($storeID);

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

$cats = array("210");
$p = array(
  'sku_type' => 0, 
  'sku' => 687, 
  'name' => "BarProduct", 
  'description' => 'Foo', 
  'short_description' => 'Bar',
  'type_id' => 'bundle', 
  'attribute_set_id' => 4, 
  'weight_type' => 0, 
  'visibility' => 4, 
  'price_type' => 0, 
  'price_view' => 0, 
  'status' => 1, 
  'created_at' => strtotime('now'), 
  'category_ids' => $cats, 
  'store_id' => $storeID, 
  'website_ids' => $websiteIDs
);

$product->setData($p);

$product->setCanSaveBundleSelections(true);
$product->setCanSaveCustomOptions(true);

Mage::register('product', $product);
Mage::register('current_product', $product);

$optionRawData = array();
$selectionRawData = array();

$optionRawData[0] = array(
  'required' => 1,
  'option_id' => '', 
  'position' => 0,
  'type' => 'select',
  'title' => 'FooOption',
  'default_title' => 'FooOption', 
  'delete' => ''
);
$selectionRawData[0] = array(); 
$selectionRawData[0][] = array(
  'product_id' => 1810,
  'position' => 0,
  'is_default' => true,
  'selection_id' => '', 
  'option_id' => '', 
  'selection_price_type' => 0,
  'selection_price_value' => 0.0,
  'selection_qty' => 1,
  'selection_can_change_qty' => 1,
  'delete' => ''
);

$product->setBundleOptionsData($optionRawData);
$product->setBundleSelectionsData($selectionRawData);

$product->save();

/*
$stockItem = Mage::getModel('cataloginventory/stock_item');
$stockItem->loadByProduct($product->getId());
if (!$stockItem->getId()) {
  $stockItem->setProductId($product->getId())->setStockId(1);
}
$stockItem->setData('is_in_stock', 1);
$stockItem->save();

$pi = Mage::getSingleton('bundle/price_index');
$pi->addPriceIndexToProduct($product);
$pi->save();
*/

?>
EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2011-05-28 19:05:24

请尝试使用以下代码,看看会发生什么:-

代码语言:javascript
复制
<?php
$magentoPath = '/home/nikola/bin/magento-1.5/';
require_once($magentoPath . 'includes/config.php');
require_once($magentoPath . 'app/Mage.php');

$storeID = 1;
$websiteIDs = array(1);
$cats = array("210");

Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);

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

$p = array(
  'sku_type' => 0,
  'sku' => '687',
  'name' => "BarProduct",
  'description' => 'Foo',
  'short_description' => 'Bar',
  'type_id' => 'bundle',
  'attribute_set_id' => 4,
  'weight_type' => 0,
  'visibility' => 4,
  'price_type' => 0,
  'price_view' => 0,
  'status' => 1,
  'created_at' => strtotime('now'),
  'category_ids' => $cats,
  'store_id' => $storeID,
  'website_ids' => $websiteIDs
);

$product->setData($p);
Mage::register('product', $product);
Mage::register('current_product', $product);

/**
 * Section of Bundle Options
 * 
 * Required Properties of Bundle Options are:-
 * 1. title
 * 2. option_id
 * 3. delete
 * 4. type
 * 5. required
 * 6. position
 * 7. default_title
 */
$optionRawData = array();
$optionRawData[0] = array(
  'required' => 1,
  'option_id' => '',
  'position' => 0,
  'type' => 'select',
  'title' => 'FooOption',
  'default_title' => 'FooOption',
  'delete' => '',
);

/**
 * Section of Bundle Selections
 * 
 * Required Properties of Bundle Selections
 * 1.   selection_id
 * 2.   option_id
 * 3.   product_id
 * 4.   delete
 * 5.   selection_price_value
 * 6.   selection_price_type
 * 7.   selection_qty
 * 8.   selection_can_change_qty
 * 9.   position
 * 10.  is_default
 */
$selectionRawData = array();
$selectionRawData[0] = array();
$selectionRawData[0][] = array(
  'product_id' => 1810,
  'selection_qty' => 1,
  'selection_can_change_qty' => 1,
  'position' => 0,
  'is_default' => 1,
  'selection_id' => '',
  'selection_price_type' => 0,
  'selection_price_value' => 0.0,
  'option_id' => '',
  'delete' => ''
);

$product->setCanSaveConfigurableAttributes(false);
$product->setCanSaveCustomOptions(true);

// Set the Bundle Options & Selection Data
$product->setBundleOptionsData($optionRawData);
$product->setBundleSelectionsData($selectionRawData);
$product->setCanSaveBundleSelections(true);
$product->setAffectBundleProductSelections(true);

$product->save();
?>

希望能有所帮助。

票数 12
EN

Stack Overflow用户

发布于 2012-10-16 06:07:11

我试过使用你的代码,但它似乎不能在Magento 1.7.0.2中工作。显然,该产品无法保存。

我所做的是添加了以下几行:

代码语言:javascript
复制
 Mage::register('product', $product);
 Mage::register('current_product', $product);
 $product->setCanSaveConfigurableAttributes(false);
 $product->setCanSaveCustomOptions(true);

就在这几行之前:

代码语言:javascript
复制
// Set the Bundle Options & Selection Data
$product->setBundleOptionsData($optionRawData);
$product->setBundleSelectionsData($selectionRawData);
$product->setCanSaveBundleSelections(true);
$product->setAffectBundleProductSelections(true);

$product->save();

这似乎解决了无法保存文件的问题。

票数 4
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/6161128

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档