diff --git a/product_import_ubl/wizard/product_import.py b/product_import_ubl/wizard/product_import.py index 9efce249406..4ec5fc21fea 100644 --- a/product_import_ubl/wizard/product_import.py +++ b/product_import_ubl/wizard/product_import.py @@ -86,6 +86,9 @@ def parse_ubl_catalogue_line(self, line, ns): ), "weight": float(ele_weight.text or 0), "weight_uom": {"unece_code": weight_unit} if weight_unit else False, + "sale_delay": xline.text( + "cac:RequiredItemLocationQuantity/cbc:LeadTimeMeasure" + ), # Seller info "price": float(ele_price.text or 0), "currency": {"iso": currency} if currency else False,