mirror of
https://github.com/bringout/oca-ocb-mrp.git
synced 2026-04-19 17:32:01 +02:00
13 lines
435 B
Python
13 lines
435 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class StockRule(models.Model):
|
|
_inherit = "stock.rule"
|
|
|
|
def _push_prepare_move_copy_values(self, move_to_copy, new_date):
|
|
new_move_vals = super(StockRule, self)._push_prepare_move_copy_values(move_to_copy, new_date)
|
|
new_move_vals["is_subcontract"] = False
|
|
return new_move_vals
|