From bcaf4752952f4aa7819c057ce61c8bd2ef69df78 Mon Sep 17 00:00:00 2001 From: Deepesh Garg Date: Sun, 15 Aug 2021 21:19:18 +0530 Subject: [PATCH] fix: Healthcare module accounting test cases --- erpnext/healthcare/doctype/lab_test/test_lab_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/healthcare/doctype/lab_test/test_lab_test.py b/erpnext/healthcare/doctype/lab_test/test_lab_test.py index c9f0029ed8..c3847ea3d1 100644 --- a/erpnext/healthcare/doctype/lab_test/test_lab_test.py +++ b/erpnext/healthcare/doctype/lab_test/test_lab_test.py @@ -147,6 +147,7 @@ def create_sales_invoice(): sales_invoice.customer = frappe.db.get_value('Patient', patient, 'customer') sales_invoice.due_date = getdate() sales_invoice.company = '_Test Company' + sales_invoice.currency = 'INR' sales_invoice.debit_to = get_receivable_account('_Test Company') tests = [insulin_resistance_template, blood_test_template]