This commit is contained in:
Florian da Costa
2018-08-30 22:26:38 +02:00
committed by sergiocorato
parent ceda082306
commit 1d08857d49

View File

@@ -122,11 +122,13 @@ class MrpProduction(models.Model):
raise UserError('\n'.join(errors))
return True
# This method should be overriden in submodule to manage cases where
# we need to add quantities to the forecast quantity. Like draft purchase
# order, purchase request, etc...
@api.model
def _get_incoming_qty_waiting_validation(self, move):
"""
This method should be overriden in submodule to manage cases where
we need to add quantities to the forecast quantity. Like draft
purchase order, purchase request, etc...
"""
return 0.0
@api.multi