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
370 B
11 lines
370 B
from odoo import models
|
|
|
|
|
|
class ThemeZap(models.AbstractModel):
|
|
_inherit = 'theme.utils'
|
|
|
|
def _theme_zap_post_copy(self, mod):
|
|
# Disable treehouse color extensions as zap does not use the
|
|
# same colors
|
|
self.disable_view('theme_treehouse.option_colors_05_variables')
|
|
self.disable_view('theme_treehouse.option_colors_06_variables')
|