Hello,
I'm having trouble importing CSV files into Odoo. I have two files: one with products and another with BOMs.
When I import the first CSV (products), everything seems to work fine. However, when I try to import the BOMs file, which references the product IDs from the first import, I get an error saying that the product IDs cannot be found.
Example:
products.csv
---------------
id,name,default_code,detailed_type,list_price,standard_price,uom_id/id,uom_po_id/id
product_1,Product 1,H1LP,service,0,0,uom.product_uom_unit,uom.product_uom_unit
product_2,Product 2,10380,service,11.03,11.03,uom.product_uom_unit,uom.product_uom_unit
bom.csv
---------------
id,product_tmpl_id/id,product_qty,type,bom_line_ids/product_id/id,bom_line_ids/product_qty
mrp_bom_f15_1_10,product_1,2,kit,,
mrp_bom_f15_1_10,,,,product_2,3
How can I correctly import BOMs along with their associated products so that the BOMs are imported together with the products?