How to count Open Status Project From Custom Script
You can use the below function
frappe.db.count('Project', { status: 'Open' })
.then(count => {
console.log(count)
})
1 Like
How to count Open Status Project From Custom Script
You can use the below function
frappe.db.count('Project', { status: 'Open' })
.then(count => {
console.log(count)
})