Merge pull request #7780 from rohitwaghchaure/minor_fix_payment_entry

[Fix] Removed employee party type from the payment entry
This commit is contained in:
Nabin Hait 2017-02-20 14:43:14 +05:30 committed by GitHub
commit da098222d7

View File

@ -28,7 +28,9 @@ frappe.ui.form.on('Payment Entry', {
frm.set_query("party_type", function() {
return{
query: "erpnext.setup.doctype.party_type.party_type.get_party_type"
"filters": {
"name": ["in",["Customer","Supplier"]],
}
}
});