Not finding option to enable "invite as User" in contact

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)
image

Hi @prasad_naik,

Please check the condition.

  1. !frm.doc.user: This condition checks if the user field in the current form document (frm.doc) is not set.
  2. !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.
  3. frm.perm[0].write: This condition checks if the user has write permission on the current form.
  4. 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.

thanks @NCP. i will try this and provide you updates