mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 12:52:05 +02:00
10 lines
241 B
Python
10 lines
241 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
pos_order_timeout = fields.Integer(
|
|
related="pos_config_id.pos_order_timeout",
|
|
readonly=False,
|
|
)
|