Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a specific field added in DB for custom options. I follow this thread to add it - http://www.magentocommerce.com/boards/viewthread/73036/P15/

Instead of weight I use two other fields which I want to pass to a shipping company when an order is placed. I have module which doing this and in the observer i have this code:

$orderItems = $order->getItemsCollection();

foreach ($orderItems as $item) {

$optionsArr = $item->getProductOptions();

foreach ($optionsArr['options'] as $option) {
  if($option['label'] !='' && $option['value'] !='') {

    $optionValue = $option['value']; // OK
    $optionId = $option['option_id']; // OK
    $optionWeight = $option['weight']; // NOT WORKING
    $optionMyCustomField = $option['my_custom_field']; // NOT WORKING

  }
}
}

This way I can get selected option value and ID.

How I can get my custom fields from the DB?

share|improve this question

1 Answer

Replace:

$optionWeight = $option['weight']; // NOT WORKING
$optionMyCustomField = $option['my_custom_field']; // NOT WORKING

with:

$optionWeight = $item->getWeight();
$optionMyCustomField = $item->getMyCustomField();

You can take them out of your foreach loop too.

share|improve this answer
it doesn't make much sense since I need to get a field of the selected option row (catalog_product_option_type_value table) - weight of the selected option but not of the product. see the code above - i added more of it – venz Mar 18 '12 at 21:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.