diff --git a/erpnext/manufacturing/doctype/production_plan/test_production_plan.py b/erpnext/manufacturing/doctype/production_plan/test_production_plan.py index e53f1ad6867..127effec91c 100644 --- a/erpnext/manufacturing/doctype/production_plan/test_production_plan.py +++ b/erpnext/manufacturing/doctype/production_plan/test_production_plan.py @@ -549,7 +549,9 @@ class TestProductionPlan(ERPNextTestSuite): make_rm_stock_entry(sco.name) scr = make_subcontracting_receipt(sco.name) scr.submit() - scr_make_purchase_receipt(scr.name).submit() + doc = scr_make_purchase_receipt(scr.name) + doc.currency = "INR" + doc.submit() fg_item = "Test Motherboard 1" bom_tree_1 = {"Test Laptop 1": {fg_item: {"Test Motherboard Wires 1": {}}}}