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.

44 lines
1.9 KiB

  1. ###################################################################################
  2. #
  3. # Copyright (c) 2017-2019 MuK IT GmbH.
  4. #
  5. # This file is part of MuK Web Branding
  6. # (see https://mukit.at).
  7. #
  8. # This program is free software: you can redistribute it and/or modify
  9. # it under the terms of the GNU Lesser General Public License as published by
  10. # the Free Software Foundation, either version 3 of the License, or
  11. # (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU Lesser General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Lesser General Public License
  19. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. #
  21. ###################################################################################
  22. from odoo import api, SUPERUSER_ID
  23. from . import models
  24. from . import controllers
  25. #----------------------------------------------------------
  26. # Hooks
  27. #----------------------------------------------------------
  28. PRIMARY_XML_ID = "muk_web_branding._assets_primary_variables"
  29. PRIMARY_SCSS_URL = "/muk_web_branding/static/src/scss/primary_colors.scss"
  30. SECONDARY_XML_ID = "muk_web_branding._assets_secondary_variables"
  31. SECONDARY_SCSS_URL = "/muk_web_branding/static/src/scss/secondary_colors.scss"
  32. BOOTSTRAP_XML_ID = "muk_web_branding._assets_backend_helpers"
  33. BOOTSTRAP_SCSS_URL = "/muk_web_branding/static/src/scss/bootstrap_colors.scss"
  34. def _uninstall_rebrand_system(cr, registry):
  35. env = api.Environment(cr, SUPERUSER_ID, {})
  36. env['muk_utils.scss_editor'].reset_values(PRIMARY_SCSS_URL, PRIMARY_XML_ID)
  37. env['muk_utils.scss_editor'].reset_values(SECONDARY_SCSS_URL, SECONDARY_XML_ID)
  38. env['muk_utils.scss_editor'].reset_values(BOOTSTRAP_SCSS_URL, BOOTSTRAP_XML_ID)