Skip to content

Commit 950a85c

Browse files
author
bosd
committed
Fix external ID field filtering - Allow /id fields through for conversion
1 parent 941371d commit 950a85c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/odoo_data_flow/import_threaded.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ def _create_batch_individually(
367367
clean_vals = {
368368
k: v
369369
for k, v in vals.items()
370-
if "/" not in k and k.split("/")[0] not in ignore_set
370+
if k.split("/")[0] not in ignore_set # Allow external ID fields through for conversion
371371
}
372372

373373
# 3. CREATE

0 commit comments

Comments
 (0)