mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-19 09:32:06 +02:00
9 lines
232 B
Python
9 lines
232 B
Python
# Copyright 2024 Tecnativa - David Vidal
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
from odoo import fields, models
|
|
|
|
|
|
class PosConfig(models.Model):
|
|
_inherit = "pos.config"
|
|
|
|
logo = fields.Binary()
|