Initial commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class ResCompany(models.Model):
|
||||
|
||||
_inherit = 'res.company'
|
||||
|
||||
favicon = fields.Binary(
|
||||
string="Company Favicon",
|
||||
attachment=True,
|
||||
)
|
||||
background_image = fields.Binary(
|
||||
string='Apps Menu Background Image',
|
||||
attachment=True,
|
||||
)
|
||||
appbar_image = fields.Binary(
|
||||
string='Sidebar Logo Image',
|
||||
attachment=True,
|
||||
)
|
||||
Reference in New Issue
Block a user