From 1d08857d494c0bfa3ae7e340445d11e458697bca Mon Sep 17 00:00:00 2001 From: Florian da Costa Date: Thu, 30 Aug 2018 22:26:38 +0200 Subject: [PATCH] Fix typo --- mrp_mto_with_stock/models/mrp_production.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/mrp_mto_with_stock/models/mrp_production.py b/mrp_mto_with_stock/models/mrp_production.py index c2ae07cf8..dcbc73d09 100644 --- a/mrp_mto_with_stock/models/mrp_production.py +++ b/mrp_mto_with_stock/models/mrp_production.py @@ -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