0

With my infinite wisdom of Magento (which was practically non-existent 3 months ago), I decided to tell my wife, aunt, sister-in-law and other housewives of our family to help and help us fill our webshop with grouped products and have them add the products that should be associated with that grouped product to the 'related products'-list. (aargh!)

Now, near the end of filling the 9000+ products we have in the webshop, I discovered that it is absolutely required to have them all in the "associated products"-list instead of the "related products"-list. Is there a way to edit all grouped products in such a way where I can convert the entire collection of "related products" to "associated products"?

Things I've tried myself:

  • I've tried exporting and importing with MagMI, but I couldn't figure out how to do it correctly.. importing prices, categories, stock (qty), setting other attributes.. everything works, except this.
  • I've tried diving in to the complex eav-model of Magento's database to see if I could just change an ID somewhere in the hope that THAT would solve it, but I kinda lost my way in the forrest of Magento's tables. (thank goodness for database backups)

Can anyone tell me how to move these "related products" to the "associated products" list?

4

1 回答 1

0

关联产品需要“可配置”或“分组”产品类型,然后将“简单”产品与之关联。

如果您的产品已经与此兼容,那么 magmi 可配置插件(在可配置的情况下)或 magmi 分组插件(在分组的情况下)可以在导入时轻松完成。

  • simples_skus在可配置产品的情况下,用 skus填充列以与您的主产品“关联”。强制可配置产品,您还需要“枢轴”属性,这些属性将构成您想要在主产品上表达的“变体”,并将由您的每个简单产品实现。

  • grouped_skus在分组产品的情况下,用 skus填充列以与您的主产品“关联”。不需要枢轴属性,因为分组产品是“产品袋”

然后对于删除相关产品,使用re_skus列,并用 填充它-re::.*,这意味着删除所有与正则表达式匹配的相关 sku: .*, => "everything"

于 2013-05-30T12:42:11.047 回答