remove debug code

This commit is contained in:
Himanshu Warekar 2019-03-06 23:53:38 +05:30
parent 59699bf46e
commit 7ab961f798
2 changed files with 0 additions and 2 deletions

View File

@ -886,7 +886,6 @@ def get_supplier(doctype, txt, searchfield, start, page_len, filters):
def make_work_orders(items, sales_order, company, project=None):
'''Make Work Orders against the given Sales Order for the given `items`'''
items = json.loads(items).get('items')
print(items)
out = []
for i in items:

View File

@ -577,7 +577,6 @@ class TestSalesOrder(unittest.TestCase):
"description": item.get("description")
})
so_item_name[item.get("sales_order_item")]= item.get("pending_qty")
print(po_items)
make_work_orders(json.dumps({"items":po_items}), so.name, so.company)
# Check if Work Orders were raised