# © 2020 Le Filament () # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo import api, fields, models class PosConfig(models.Model): _inherit = 'pos.config' is_balance_free = fields.Boolean(string='Balance libre service') logo_balance = fields.Binary(string='Logo Balance') explication_header = fields.Char(string='Explication') weight_default = fields.Char(string='Poids par défault (kg)') balance_id = fields.Char("Identifiant de la balance")