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.

15 lines
364 B

  1. from odoo import models, fields
  2. class ResCompany(models.Model):
  3. _inherit = 'res.company'
  4. #----------------------------------------------------------
  5. # Fields
  6. #----------------------------------------------------------
  7. background_image = fields.Binary(
  8. string='Apps Menu Background Image',
  9. attachment=True
  10. )