From 25a15d77b529ac8f59ce180b3318a9ce34156d6c Mon Sep 17 00:00:00 2001 From: Niyas Raphy Date: Wed, 9 Jan 2019 17:48:23 +0530 Subject: [PATCH] [UPDT] Removed Print in the Code --- pos_mrp_order/models/point_of_sale_make_mrp.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pos_mrp_order/models/point_of_sale_make_mrp.py b/pos_mrp_order/models/point_of_sale_make_mrp.py index 985c62d88..60c11125c 100644 --- a/pos_mrp_order/models/point_of_sale_make_mrp.py +++ b/pos_mrp_order/models/point_of_sale_make_mrp.py @@ -32,7 +32,6 @@ class MrpProduction(models.Model): @api.multi def create_mrp_from_pos(self, products): product_ids = [] - print "products", products if products: for product in products: flag = 1 @@ -57,7 +56,6 @@ class MrpProduction(models.Model): bom = bom_temp[0] else: bom = [] - print "This product variants have no exact BOM" if bom: vals = { 'origin': 'POS-' + prod['pos_reference'],