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.

13 lines
460 B

  1. # Copyright (C) 2018 - Today: GRAP (http://www.grap.coop)
  2. # @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. from openerp import fields, models
  5. class PosConfig(models.Model):
  6. _inherit = 'pos.config'
  7. check_session_state_frequency = fields.Integer(
  8. string="Frequency of Checking the State of the Session",
  9. default=60, help="The value is set in seconds.")