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.
14 lines
531 B
14 lines
531 B
# © 2020 Le Filament (<http://www.le-filament.com>)
|
|
# 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")
|