Files
stock-logistics-warehouse/stock_cycle_count/models/stock_move.py
2021-10-01 15:11:47 +02:00

16 lines
466 B
Python

# Copyright 2017 ForgeFlow S.L.
# (http://www.forgeflow.com)
# Copyright 2019 Tecnativa - Pedro M. Baeza
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from odoo import models
class StockMove(models.Model):
_inherit = "stock.move"
def _action_done(self, cancel_backorder=False):
res = super()._action_done(cancel_backorder=cancel_backorder)
self.mapped("location_id").check_zero_confirmation()
return res