mirror of
https://github.com/bringout/oca-ocb-mrp.git
synced 2026-04-23 07:12:10 +02:00
12 lines
317 B
Python
12 lines
317 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class StockMove(models.Model):
|
|
_inherit = 'stock.move'
|
|
|
|
def _is_purchase_return(self):
|
|
res = super()._is_purchase_return()
|
|
return res or self._is_subcontract_return()
|