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.

16 lines
553 B

  1. # coding: utf-8
  2. # Copyright 2018 - Today Sylvain LE GAL (https://twitter.com/legalsylvain)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. from odoo import fields, models
  5. class PosConfig(models.Model):
  6. _inherit = 'pos.config'
  7. picking_creation_delayed = fields.Boolean(
  8. string='Picking Creation Delayed', default=True,
  9. help="Check this box if you want to delay the creation of the picking"
  10. " created by the PoS orders. If checked, the pickings will"
  11. " be created later, by a cron task.")