community_themes/muk_web_enterprise_theme/models/res_company.py

27 lines
604 B
Python
Raw Normal View History

2025-07-19 01:29:09 +07:00
from odoo import models, fields
class ResCompany(models.Model):
_inherit = 'res.company'
#----------------------------------------------------------
# Fields
#----------------------------------------------------------
favicon = fields.Binary(
string="Company Favicon",
attachment=True
)
background_image_light = fields.Binary(
string='Apps Menu Background Light Image',
attachment=True
)
background_image_dark = fields.Binary(
string='Apps Menu Background Dark Image',
attachment=True
)