Hello All,
Please guide me how to enable “invite as user” in Contact list as i am not finding this option in ERPNEXT (We are at V13.67 version)
Hello All,
Please guide me how to enable “invite as user” in Contact list as i am not finding this option in ERPNEXT (We are at V13.67 version)
Hi @prasad_naik,
Please check the condition.
!frm.doc.user
: This condition checks if the user
field in the current form document (frm.doc
) is not set.!frm.is_new()
: This condition checks if the form is not new. In other words, it ensures that the form is not in the process of being created.frm.perm[0].write
: This condition checks if the user has write permission on the current form.frappe.boot.user.can_create.includes("User")
: This condition checks if the current user has permission to create a User object. It appears to check if the current user can create instances of the “User” object in the system.I hope this helps.