Files
stock-logistics-warehouse/stock_cycle_count/models/stock_move.py
2020-06-02 13:04:23 +02:00

16 lines
498 B
Python

# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# (http://www.eficent.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