Skip to content

Commit b51df74

Browse files
fix: employee advance option added to payment entry (#1380)
* fix: employee advance option added to payment entry * fix: Removed duplicate filter for expense claim. --------- Co-authored-by: nesscale-com <[email protected]>
1 parent aeeda19 commit b51df74

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

hrms/public/js/erpnext/payment_entry.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ frappe.ui.form.on("Payment Entry", {
1111
} else if (frm.doc.party_type == "Supplier") {
1212
doctypes = ["Purchase Order", "Purchase Invoice", "Journal Entry"];
1313
} else if (frm.doc.party_type == "Employee") {
14-
doctypes = ["Expense Claim", "Journal Entry"];
14+
doctypes = ["Expense Claim", "Employee Advance", "Journal Entry"];
1515
} else {
1616
doctypes = ["Journal Entry"];
1717
}
@@ -32,10 +32,13 @@ frappe.ui.form.on("Payment Entry", {
3232
}
3333

3434
if (child.reference_doctype == "Expense Claim") {
35-
filters["docstatus"] = 1;
3635
filters["is_paid"] = 0;
3736
}
3837

38+
if (child.reference_doctype == "Employee Advance") {
39+
filters["status"] = "Unpaid";
40+
}
41+
3942
return {
4043
filters: filters
4144
};

0 commit comments

Comments
 (0)