You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
519 B
16 lines
519 B
# Copyright 2015 Therp BV <http://therp.nl>
|
|
# Copyright 2016 Pedro M. Baeza
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
favicon_backend = fields.Binary()
|
|
favicon_backend_mimetype = fields.Selection(
|
|
selection=[('image/x-icon', 'image/x-icon'),
|
|
('image/gif', 'image/gif'),
|
|
('image/png', 'image/png')],
|
|
help='Set the mimetype of your file.')
|