fix(sales invoice): get value only if field exists
diff --git a/erpnext/healthcare/utils.py b/erpnext/healthcare/utils.py
index 1be82e2..22d5582 100644
--- a/erpnext/healthcare/utils.py
+++ b/erpnext/healthcare/utils.py
@@ -220,7 +220,7 @@
 def manage_invoice_submit_cancel(doc, method):
 	if doc.items:
 		for item in doc.items:
-			if item.reference_dt and item.reference_dn:
+			if item.get("reference_dt") and item.get("reference_dn"):
 				if frappe.get_meta(item.reference_dt).has_field("invoiced"):
 					set_invoiced(item, method, doc.name)