mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
13 lines
272 B
Python
13 lines
272 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import logging
|
|
|
|
from odoo import api, fields, models, _
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
# 为兼容而保留
|
|
class AppThemeConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
_name = 'app.theme.config.settings'
|