pos_usability: add sequence on pos.config

This commit is contained in:
Alexis de Lattre
2023-09-12 16:22:32 +02:00
parent 6df9756479
commit 4121d8466d
4 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
# Copyright 2023 Akretion France (http://www.akretion.com/)
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class PosConfig(models.Model):
_inherit = 'pos.config'
_order = 'sequence, id'
sequence = fields.Integer(default=10)