[Fix] Removed employee party type from the payment entry
diff --git a/erpnext/accounts/doctype/payment_entry/payment_entry.js b/erpnext/accounts/doctype/payment_entry/payment_entry.js
index 0130366..79a8f2b 100644
--- a/erpnext/accounts/doctype/payment_entry/payment_entry.js
+++ b/erpnext/accounts/doctype/payment_entry/payment_entry.js
@@ -28,7 +28,9 @@
 
 		frm.set_query("party_type", function() {
 			return{
-				query: "erpnext.setup.doctype.party_type.party_type.get_party_type"
+				"filters": {
+					"name": ["in",["Customer","Supplier"]],
+				}
 			}
 		});