Did Not Showing account 😔

I want to show all Temporary Accounts in Account Paid From field .Please help

Hi @PRaful_9898,

Why do you want to take away the filter? Is there a specific reason for removing it?

The filter is important because it sets the foundation for account types, accounts, and other elements in the code structure.

If you plan to alter the filter concept, make sure to review the General Ledger (GL) entry and Payment Ledger Entry locally first. After testing it successfully, you can then implement the changes on the live server.

But if want then apply the client script.

frappe.ui.form.on('Payment Entry', {
	refresh(frm) {
		frm.set_query("paid_from", function() {
			return {
				filters: {
					"account_type":"Temporary"
				}
			}
		});
	}
});

Thank You!