Skip to content

Commit a05df66

Browse files
committed
[FIX] util/helpers: ensure non empty path
Avoid issues if the caller pass a `None` object. closes odoo#106 Signed-off-by: Christophe Simonis (chs) <[email protected]>
1 parent 1d9e20e commit a05df66

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/util/helpers.py

+2
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,8 @@ def resolve_model_fields_path(cr, model, path):
279279
:return: resolved fields path parts
280280
:rtype: list(:class:`~odoo.upgrade.util.helpers.FieldsPathPart`)
281281
"""
282+
if not path:
283+
return []
282284
path = list(path)
283285
cr.execute(
284286
"""

src/util/records.py

+4
Original file line numberDiff line numberDiff line change
@@ -492,6 +492,8 @@ def _remove_import_export_paths(cr, model, field=None):
492492
"""
493493
if field:
494494
export_q = cr.mogrify(export_q + " WHERE el.name ~ %s ", [r"\y{}\y".format(field)]).decode()
495+
else:
496+
export_q += " WHERE el.name IS NOT NULL"
495497

496498
import_q = """
497499
SELECT id,
@@ -501,6 +503,8 @@ def _remove_import_export_paths(cr, model, field=None):
501503
"""
502504
if field:
503505
import_q = cr.mogrify(import_q + " WHERE field_name ~ %s ", [r"\y{}\y".format(field)]).decode()
506+
else:
507+
import_q += " WHERE field_name IS NOT NULL "
504508

505509
for query, impex_model in [(export_q, "ir.exports.line"), (import_q, "base_import.mapping")]:
506510
cr.execute(query)

0 commit comments

Comments
 (0)