mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
14 lines
365 B
Python
14 lines
365 B
Python
# Copyright (C) 2022 Open Source Integrators
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models
|
|
|
|
|
|
class StockInventory(models.Model):
|
|
_name = "stock.inventory"
|
|
_inherit = ["stock.inventory", "tier.validation"]
|
|
_state_from = ["draft", "confirm"]
|
|
_state_to = ["done"]
|
|
|
|
_tier_validation_manual_config = False
|