I am creating a module for magento where you can put custom options on the simple products within the grouped.
I just can not get the values chosen by the user.
$dataEntrega = array(
'label' => 'Data',
'option_value' =>
'value' =>
'print_value' =>
);
$saborProduto = array(
'label' => 'Sabor',
'option_value' =>
'value' =>
'print_value' =>
);
$value = array('data_entrega'=> $dataEntrega, 'sabor' => $saborProduto);
$value = serialize($value);
$_item->addOption(array('code'=> 'additional_options', 'product_id'=> $_item->getProductId(), 'value'=> $value));
$_item->save();