20 lines
407 B
Python
20 lines
407 B
Python
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,
|
|
)
|