Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7605743
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T00:14:37+00:00 2026-05-31T00:14:37+00:00

I’m implementing a user interface on the backend for adding an arbitrary number of

  • 0

I’m implementing a user interface on the backend for adding an arbitrary number of values to a product – just like the price tier interface. I’d like to know how saving data like this is usually done.

Below is some simplified code of my attempt (which throws this error: Item with the same id “1” already exists”):

$myItemCollection = $product->getMyItemCollection();
if(!$myItemCollection) {
    $myItemCollection = Mage::getModel('my_module/my_item')->getCollection();
}

foreach($product->getMyData('items') as $data) {
    $myItem = Mage::getModel('my_module/my_item')->addData($data);
    // Item with the same id "1" already exist on the second iteration
    $myItemCollection->addItem($myItem);
}

$myItemCollection
    ->setDataToAll('product_id', $product->getId())
    ->save();

$product->getMyData(‘items’) returns something like:

array(
    1 => array(
        'foo' => 'bar'
    ),
    2 => array(
        'bin' => 'baz'
    ),
    3 => array(
        'buz' => 'fuz'
    )
)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T00:14:39+00:00Added an answer on May 31, 2026 at 12:14 am

    The collection uses the getId() method on the added item to get the array key for the internal $_items array. Your error Item with the same id “1” already exist on the second iteration means you are setting some value on the new models that is returned as an id value.

    If getId() returns null the item is added using $_items[] = $item to the collection without that error being thrown.
    This means if you are using standard models and resource models, $data probably doesn’t match the array you posted.

    The key that is used to return the ID value for a model depends on the type of entity.
    If the model uses a EAV based resource model (Mage_Eav_Model_Entity_Abstract), the key is entity_id, e.g. array('entity_id' => 1, 'foo' => 'bar').

    If the model uses a flat table based resource model (Mage_Core_Model_Resource_Db_Abstract), the primary key field is (usually) set in the resource model’s _construct() method, as the second parameter to the _init() call.
    So if the resource model’s initialization looks like $this->_init('my_module/my_item', 'item_id') the value to set on the $data array would be array('item_id' => 1, 'foo' => 'bar').

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I would like to count the length of a string with PHP. The string
For some reason, after submitting a string like this Jack’s Spindle from a text
I've got a string that has curly quotes in it. I'd like to replace
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I need to clean up various Word 'smart' characters in user input, including but
Does anyone know how can I replace this 2 symbol below from the string
I am trying to render a haml file in a javascript response like so:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.