10 lines
244 B
Python
10 lines
244 B
Python
from odoo import models
|
|
|
|
|
|
class ThemeBeauty(models.AbstractModel):
|
|
_inherit = 'theme.utils'
|
|
|
|
def _theme_beauty_post_copy(self, mod):
|
|
# Change preset for colors
|
|
self.enable_view('theme_common.option_colors_03_variables')
|