21 lines
463 B
Python
21 lines
463 B
Python
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
|
|
)
|