community_themes/muk_web_appsbar/models/res_company.py

16 lines
356 B
Python
Raw Permalink Normal View History

2025-07-19 01:29:09 +07:00
from odoo import models, fields
class ResCompany(models.Model):
_inherit = 'res.company'
#----------------------------------------------------------
# Fields
#----------------------------------------------------------
appbar_image = fields.Binary(
string='Apps Menu Footer Image',
attachment=True
)