OCA reporting engine fork for dev and update.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
421 B

  1. # © 2018 Therp BV <http://therp.nl>
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  3. def migrate(cr, version=None):
  4. # when migrating from a pre-split version of the module, pull the fusion
  5. # server module too to have no loss of features
  6. cr.execute(
  7. "update ir_module_module set state='to install' "
  8. "where name='report_py3o_fusion_server' and state='uninstalled'"
  9. )