Public release from ruodoo-project: 19.0 - 2026-05-31 21:19:12 UTC
This commit is contained in:
12
web_debranding/models/res_company.py
Normal file
12
web_debranding/models/res_company.py
Normal file
@ -0,0 +1,12 @@
|
||||
# Copyright 2020 Ivan Yelizariev
|
||||
# License OPL-1 (https://www.odoo.com/documentation/user/14.0/legal/licenses/licenses.html#odoo-apps).
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class Company(models.Model):
|
||||
_inherit = "res.company"
|
||||
|
||||
def _get_default_favicon(self, original=False):
|
||||
return None
|
||||
|
||||
favicon = fields.Binary(default=_get_default_favicon)
|
||||
Reference in New Issue
Block a user