Browse Source

Merge pull request #552 from hbrunn/9.0-base_multi_image-fix-hook-dbstore

[FIX] adapt to changes in binary attachment branch
pull/556/head
Pedro M. Baeza 8 years ago
committed by GitHub
parent
commit
e37056fcf5
  1. 8
      base_multi_image/hooks.py

8
base_multi_image/hooks.py

@ -27,10 +27,14 @@ def pre_init_hook_for_submodules(cr, model, field):
# fields.Binary(), extract the binary content directly from the table
if column_exists:
extract_query = """
SELECT id, %%s, 'db', %(field)s
SELECT id, '%(model)s', '%(model)s,' || id, 'db', %(field)s
FROM %(table)s
WHERE %(field)s IS NOT NULL
""" % {"table": table, "field": field}
""" % {
"table": table,
"field": field,
"model": model,
}
image_field = 'file_db_store'
# fields.Binary(attachment=True), get the ir_attachment record ID
else:

Loading…
Cancel
Save