[init/add] generic backend theme

This commit is contained in:
Daveanand Mannie
2026-01-09 20:25:07 -05:00
commit 8af4c7e966
213 changed files with 6068 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
from odoo import models, fields
class ResCompany(models.Model):
_inherit = 'res.company'
#----------------------------------------------------------
# Fields
#----------------------------------------------------------
favicon = fields.Binary(
string="Company Favicon",
attachment=True
)
background_image = fields.Binary(
string='Apps Menu Background Image',
attachment=True
)