Browse Source

[REF] base_export_manager: Fix model domain

* Change osv_memory to transient for model_id domain
pull/505/head
Dave Lasley 8 years ago
committed by Pedro M. Baeza
parent
commit
ea07feec21
  1. 2
      base_export_manager/models/ir_exports.py

2
base_export_manager/models/ir_exports.py

@ -18,7 +18,7 @@ class IrExports(models.Model):
"ir.model",
"Model",
store=True,
domain=[("osv_memory", "=", False)],
domain=[("transient", "=", False)],
compute="_compute_model_id",
inverse="_inverse_model_id",
help="Database model to export.")

Loading…
Cancel
Save