[init/add] generic backend theme
This commit is contained in:
20
muk_web_theme-19/muk_web_theme/models/res_company.py
Normal file
20
muk_web_theme-19/muk_web_theme/models/res_company.py
Normal 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
|
||||
)
|
||||
Reference in New Issue
Block a user