We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeeda19 commit b51df74Copy full SHA for b51df74
hrms/public/js/erpnext/payment_entry.js
@@ -11,7 +11,7 @@ frappe.ui.form.on("Payment Entry", {
11
} else if (frm.doc.party_type == "Supplier") {
12
doctypes = ["Purchase Order", "Purchase Invoice", "Journal Entry"];
13
} else if (frm.doc.party_type == "Employee") {
14
- doctypes = ["Expense Claim", "Journal Entry"];
+ doctypes = ["Expense Claim", "Employee Advance", "Journal Entry"];
15
} else {
16
doctypes = ["Journal Entry"];
17
}
@@ -32,10 +32,13 @@ frappe.ui.form.on("Payment Entry", {
32
33
34
if (child.reference_doctype == "Expense Claim") {
35
- filters["docstatus"] = 1;
36
filters["is_paid"] = 0;
37
38
+ if (child.reference_doctype == "Employee Advance") {
39
+ filters["status"] = "Unpaid";
40
+ }
41
+
42
return {
43
filters: filters
44
};
0 commit comments