pos_usability: add sequence on pos.config
This commit is contained in:
@@ -32,6 +32,7 @@ Akretion:
|
||||
"views/pos_category.xml",
|
||||
"views/pos_session.xml",
|
||||
"views/pos_order.xml",
|
||||
"views/pos_config.xml",
|
||||
"views/product.xml",
|
||||
],
|
||||
"installable": True,
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
from . import product
|
||||
from . import pos_category
|
||||
from . import pos_config
|
||||
from . import pos_payment_method
|
||||
|
||||
12
pos_usability/models/pos_config.py
Normal file
12
pos_usability/models/pos_config.py
Normal 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)
|
||||
21
pos_usability/views/pos_config.xml
Normal file
21
pos_usability/views/pos_config.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
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).
|
||||
-->
|
||||
|
||||
<odoo>
|
||||
|
||||
<record id="view_pos_config_tree" model="ir.ui.view">
|
||||
<field name="model">pos.config</field>
|
||||
<field name="inherit_id" ref="point_of_sale.view_pos_config_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="name" position="before">
|
||||
<field name="sequence" widget="handle"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
||||
Reference in New Issue
Block a user