mejora el stock picking batch de odoo desde OCA/stock_logistics_workflow

This commit is contained in:
santiky 2022-04-22 18:42:08 +02:00
parent 8a755662d7
commit 448f889f12
Signed by: snt
GPG key ID: A9FD34930EADBE71
41 changed files with 6541 additions and 0 deletions

View file

@ -0,0 +1,14 @@
# Copyright 2016 Camptocamp SA
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import fields, models
class StockWarehouse(models.Model):
_inherit = 'stock.warehouse'
default_user_id = fields.Many2one(
'res.users', 'Default Picker',
help='the user to which the batch pickings are assigned by default',
index=True,
)