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

5 years ago
  1. # © 2020 Le Filament (<http://www.le-filament.com>)
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  3. from odoo import api, fields, models
  4. class PosConfig(models.Model):
  5. _inherit = 'pos.config'
  6. is_balance_free = fields.Boolean(string='Balance libre service')
  7. logo_balance = fields.Binary(string='Logo Balance')
  8. explication_header = fields.Char(string='Explication')
  9. weight_default = fields.Char(string='Poids par défault (kg)')
  10. balance_id = fields.Char("Identifiant de la balance")