# Copyright (C) 2019 Akretion # Copyright 2022 Foodles (http://www.foodles.co). # @author Pierre Verkest # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields, models class StockQuantPackage(models.Model): _inherit = "stock.quant.package" warehouse_id = fields.Many2one( "stock.warehouse", related="location_id.warehouse_id", store=True, index=True )