Browse Source

[UPDT] Removed Print in the Code

pull/111/head
Niyas Raphy 6 years ago
parent
commit
25a15d77b5
  1. 2
      pos_mrp_order/models/point_of_sale_make_mrp.py

2
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'],

Loading…
Cancel
Save