8 lines
159 B
Python
8 lines
159 B
Python
from odoo import fields
|
|
from odoo import models
|
|
|
|
|
|
class PosConfig(models.Model):
|
|
_inherit = "pos.config"
|
|
|
|
allow_reorder = fields.Boolean(default=True)
|