Skip to content

Commit

Permalink
Merge PR #61 into 13.0
Browse files Browse the repository at this point in the history
Signed-off-by simahawk
  • Loading branch information
OCA-git-bot committed Jan 30, 2020
2 parents d623b1c + b23c620 commit cf73118
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion connector_importer/models/sources/source_mixin.py
Expand Up @@ -27,7 +27,10 @@ class ImportSourceConsumerMixin(models.AbstractModel):
string="Source",
compute="_compute_source_ref_id",
selection="_selection_source_ref_id",
store=True,
# NOTE: do not store a computed fields.Reference, Odoo crashes
# with an error message "Mixing appels and orange..." when performing
# a self.recompute() on such fields.
store=False,
)
source_config_summary = fields.Html(
compute="_compute_source_config_summary", readonly=True
Expand Down

0 comments on commit cf73118

Please sign in to comment.