我有一些与产品自定义选项相关的有趣问题: -
选项和&之间有什么区别吗?自定义选项?这是因为我在几乎所有与产品相关的模块中都为每个产品细节找到了两个不同的属性: -
options
custom_options
但是,只有一个类仅适用于产品选项,它往往会处理自定义选项。请有人澄清这一点。
我正在尝试获取订购商品的自定义选项,包括自定义选项价格和价格类型。问题是Magento只存储相应订购商品的期权价值,而不是其所有细节(如自定义期权价格和价格类型)。
所以我创建了这个类Mage_Catalog_Model_Product_Option_Value
的对象,仅考虑drop_down
自定义选项类型。我在下面提供了我的代码,但它仍然是徒劳的,并没有取得预期的结果。有人可以纠正这个代码并帮助我吗?
第2点的代码: -
echo "<pre>";
// $collection contains the whole Order Collection
foreach ($collection as $order) {
foreach ($order->getAllItems() as $item) {
$customOptions = $item->getProductOptions();
foreach ($customOptions['options'] as $_eachOption) {
// Value ID is stored in this field "option_value"
$objModel = Mage::getModel('catalog/product_option_value')->load($_eachOption['option_value']);
// This should provide all the details of this particular Option Value as chosen by the Customer when ordering this Product, but unfortunately it doesn't
print_r($objModel->getData());
/**
* This gives the output as, without any details on Price and Price Type:-
* Array
* {
* [option_type_id] => 13014
* [option_id] => 4921
* [sku] => XBPS22
* [sort_order] => 0
* }
*/
unset($objModel);
}
}
}
echo "</pre>";
在做了一些检查后,我发现与每个选项值相关的价格都存储在catalog_product_option_type_price
数据库表中,与每个选项相关的价格都存储在catalog_product_option_price
数据库表中。因此,必须有一些方法来了解Magento如何获取相应的自定义选项价格。请赐教,并纠正上面的代码?
提前感谢所有人!
答案 0 :(得分:16)
我知道这是一个老问题,但它没有答案,在遇到同样的问题后疯狂地寻找答案,我想我会在这里为其他可能找到答案的人提供答案。
在这段代码中,我按id加载产品,获取选项集合,在我的测试中只包含产品的自定义选项,而不是属性或其他选项,迭代选项并为每个选项加载值集合。只要您有产品ID,此演示代码几乎可以在任何地方测试。
<?php
$productID = $this->getProductId(); //Replace with your method to get your product Id.
$product = Mage::getModel('catalog/product')->load($productID);
$options = Mage::getModel('catalog/product_option')->getProductOptionCollection($product);
foreach ($options as $option) {
Mage::log('Name: ' . $option->getDefaultTitle());
Mage::log(' Type: ' . $option->getType());
Mage::log(' Class: ' . get_class($option));
Mage::log(' Price/Type: ' . ($option->getPrice() ? $option->getPrice() : '0.00') . ' / ' . $option->getType());
if ($option->getType() === 'drop_down') {
$values = Mage::getSingleton('catalog/product_option_value')->getValuesCollection($option);
Mage::log(' Values: (name/price/type)');
foreach ($values as $value) {
Mage::log(' ' . $value->getTitle() . ' / ' . $value->getPrice() . ' / ' . $value->getPriceType());;
}
}
}
?>
示例日志输出:
2014-02-18T20:15:25+00:00 DEBUG (7): Name: Turtle Color
2014-02-18T20:15:25+00:00 DEBUG (7): Type: drop_down
2014-02-18T20:15:25+00:00 DEBUG (7): Class: Mage_Catalog_Model_Product_Option
2014-02-18T20:15:25+00:00 DEBUG (7): Price/Type: 0.00 / drop_down
2014-02-18T20:15:25+00:00 DEBUG (7): Values: (name/price/type)
2014-02-18T20:15:25+00:00 DEBUG (7): Red / 0.0000 / fixed
2014-02-18T20:15:25+00:00 DEBUG (7): White / 0.0000 / fixed
2014-02-18T20:15:25+00:00 DEBUG (7): Blue / 0.0000 / fixed
$ option Mage :: log($ option-&gt; toArray())的可用数据示例;
注意:price和price_type仅适用于drop_down类型选项的选项值。
2014-02-18T20:19:44+00:00 DEBUG (7): Array
(
[option_id] => 135
[product_id] => 80
[type] => field
[is_require] => 0
[sku] =>
[max_characters] => 25
[file_extension] =>
[image_size_x] =>
[image_size_y] =>
[sort_order] => 90
[description] =>
[default_title] => Turtle Name
[store_title] =>
[title] => Turtle Name
[default_price] => 0.0000
[default_price_type] => fixed
[store_price] =>
[store_price_type] =>
[price] => 0.0000
[price_type] => fixed
)
$ value的示例可用数据Mage :: log($ values-&gt; toArray());
2014-02-18T20:25:21+00:00 DEBUG (7): Array
(
[totalRecords] => 2
[items] => Array
(
[0] => Array
(
[option_type_id] => 1149
[option_id] => 229
[sku] =>
[sort_order] => 10
[default_price] => 0.0000
[default_price_type] => fixed
[store_price] => 0.0000
[store_price_type] => fixed
[price] => 0.0000
[price_type] => fixed
[default_title] => 31"
[store_title] => 31"
[title] => 31"
)
[1] => Array
(
[option_type_id] => 1150
[option_id] => 229
[sku] =>
[sort_order] => 20
[default_price] => 0.0000
[default_price_type] => fixed
[store_price] => 0.0000
[store_price_type] => fixed
[price] => 0.0000
[price_type] => fixed
[default_title] => 31.5"
[store_title] => 31.5"
[title] => 31.5"
)
)
)
答案 1 :(得分:3)
首先从集合中加载产品然后按如下方式循环:
$product = 100; // product id, you should get first
foreach($product->getOptions() as $options)
{
$options->getType(); // get option type
$optionValues = $options->getValues();
foreach($optionValues as $optVal)
{
print_r($optVal->getData());
// or $optVal->getData('option_id')
}
}
*修改*
$prdSku = 125; // sample sku
$product = Mage::getModel('catalog/product');
$prdId = $product->getIdBySku($prdSku);
$product->load($prdId);
if ($product->getId()) {
if ($product->hasCustomOptions()) {
foreach ($product->getOptions() as $opt) {
$optionType = $opt->getType();
if ($optionType == 'drop_down') {
$values = $opt->getValues();
foreach ($values as $k => $v) {
Mage::log("Array Key = $k;");
Mage::log("Array Value: $v");
}
}
}
}
答案 2 :(得分:1)
$session= Mage::getSingleton('checkout/session');
$getotal = Mage::helper('checkout')->getQuote()->getGrandTotal();
foreach($session->getQuote()->getAllItems() as $item)
{
$options = Mage::getModel('catalog/product')->load($item->getProduct()->getId())->getProductOptionsCollection();
foreach ($options as $o)
{
$title = $o->getTitle();
$values = $o->getValues();
foreach($values as $v)
{
$mydata = $v->getPrice();
}
}
}
您可以使用此代码为购物车中的产品定制价格设置价格。
答案 3 :(得分:1)
这里也提出了类似的问题:
get selected custom option price for simple product in observer
我在那里给出了以下答案:
如果您有选项值ID,我也可以直接查询以获得期权价格。我知道这不完全是Magento的方式,你可能需要做一些自定义计算(比如版本价),但你可以这样做:
$optionValueId = 1234; // replace with you option value ID
$resource = Mage::getSingleton('core/resource');
$connection = $resource->getConnection('read');
$optionvaluePrice = $connection->fetchRow(
sprintf('SELECT * FROM %1$s WHERE option_type_id = %2$d',
$resource->getTableName('catalog/product_option_type_price'),
$optionValueId
)
);
可悲的是,Magento似乎没有单独加载单一期权价格的模型。