Entity Lookup plugin with dynamic bundle

Created on 14 March 2025, 22 days ago

Problem/Motivation

I am using Migrate CSV to migrate multiple product attributes from a single CSV file.
This works fine, but I noticed that a few values ​​are missing after the import.

Since the attribute entity is identified by name, if the same name is used in two different bundles, only one of them is imported.
First I tried the import without bundle and bundle_key.
When I added these, I realized that this doesn't help either, because the bundle is not dynamic, so it won't read the value from the $row for me.

Steps to reproduce

Here is my YML file:

source:
  plugin: csv
  path: 'modules/custom/my_module/files/product_attribute_values.csv'
  header_offset: 0
  ids: [name]

process:
  attribute: attribute
  name: name
  attribute_value_id:
    plugin: entity_lookup
    entity_type: commerce_product_attribute_value
    source: name
    value_key: name
    bundle_key: attribute
    bundle: attribute
    access_check: false

destination:
  plugin: 'entity:commerce_product_attribute_value'

CSV example:

attribute,name
load_capacity,"50-100kg"
load_capacity,"100-150kg"
load_capacity,"Above 150kg"
maximum_load,"100-150kg"
maximum_load,"Above 150kg"
size,"L"
size,"M"
size,"S"
size,"XL"

Proposed resolution

This should be made dynamic somehow, for example if the bundle value starts with @ (@attribute), like a pseudo field, it will read the value from $row in the transform() function and pass it to the query() and doGetQuery().

✨ Feature request
Status

Active

Version

6.0

Component

Plugins

Created by

πŸ‡·πŸ‡ΈSerbia norbert-goco Subotica

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @norbert-goco
  • πŸ‡·πŸ‡ΈSerbia norbert-goco Subotica

    Ok, I figured it out. It works fine.
    If bundle and bundle_key are not defined then it works dynamically, I just had to make the CSV source plugin look at the attribute when creating the mapping, not just the name: ids: [attribute, name]

    So the updated YML:

    source:
      plugin: csv
      path: 'modules/custom/my_module/files/product_attribute_values.csv'
      header_offset: 0
      ids: [attribute, name]
    
    process:
      attribute: attribute
      name: name
      attribute_value_id:
        plugin: entity_lookup
        entity_type: commerce_product_attribute_value
        source: name
        value_key: name
        access_check: false
    
    destination:
      plugin: 'entity:commerce_product_attribute_value'
    
  • πŸ‡·πŸ‡ΈSerbia norbert-goco Subotica
  • πŸ‡·πŸ‡ΈSerbia norbert-goco Subotica

    I was in a hurry.
    The number of entities in the migrate_map_* table now matches with the CSV, but the elements with the same name have a same ID (destid1), so it's still not good.

    E.g.:
    sourceid1, sourceid2, destid1
    packaging, 1-5kg, 568
    weight, 1-5kg, 568

  • πŸ‡·πŸ‡ΈSerbia norbert-goco Subotica
Production build 0.71.5 2024