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.

42 lines
1.8 KiB

  1. ###################################################################################
  2. #
  3. # Copyright (C) 2017 MuK IT GmbH
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU Affero General Public License as
  7. # published by the Free Software Foundation, either version 3 of the
  8. # License, or (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU Affero General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License
  16. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. #
  18. ###################################################################################
  19. from odoo import api, SUPERUSER_ID
  20. from . import controllers
  21. from . import models
  22. REFRESH_RULE_MODELS = [
  23. 'account.bank.statement', 'account.invoice', 'account.journal',
  24. 'account.move', 'crm.lead', 'event.event', 'fleet.vehicle', 'hr.contract',
  25. 'hr.department', 'hr.employee', 'hr.job', 'hr.leave', 'lunch.order',
  26. 'mrp.bom', 'mrp.document', 'mrp.workorder', 'product.category',
  27. 'product.template', 'project.project', 'project.task', 'purchase.order',
  28. 'repair.order', 'res.partner', 'res.users', 'sale.order', 'slide.slide',
  29. 'stock.inventory', 'stock.move', 'survey.page', 'survey.survey',
  30. ]
  31. def _install_initialize_rules(cr, registry):
  32. env = api.Environment(cr, SUPERUSER_ID, {})
  33. for model_name in REFRESH_RULE_MODELS:
  34. env['base.automation'].create_refresh_rules(model_name)
  35. def _uninstall_remove_rules(cr, registry):
  36. env = api.Environment(cr, SUPERUSER_ID, {})
  37. env['base.automation'].search([('state', '=', 'refresh')]).unlink()