commit | 0c03834190c046e699c161e88e3d9c54abb1da73 | [log] [tgz] |
---|---|---|
author | Rucha Mahabal <ruchamahabal2@gmail.com> | Tue May 19 20:30:20 2020 +0530 |
committer | GitHub <noreply@github.com> | Tue May 19 20:30:20 2020 +0530 |
tree | ae30c7244e27b4213708b728088fdb80611633d5 | |
parent | 99d348ffa3d88cd5e0c8a21fcb66f4b62ae73fb6 [diff] |
fix(minor): pass ignore_mandatory flag for Lab Test Item Creation (#21784)
diff --git a/erpnext/healthcare/doctype/lab_test_template/lab_test_template.py b/erpnext/healthcare/doctype/lab_test_template/lab_test_template.py index e2b47b4..3521561 100644 --- a/erpnext/healthcare/doctype/lab_test_template/lab_test_template.py +++ b/erpnext/healthcare/doctype/lab_test_template/lab_test_template.py
@@ -115,7 +115,7 @@ "price_list": price_list_name, "item_code": item, "price_list_rate": item_price - }).insert(ignore_permissions=True) + }).insert(ignore_permissions=True, ignore_mandatory=True) @frappe.whitelist() def change_test_code_from_template(lab_test_code, doc):