I’m not able to see the print option in shared Quotation. I have applied User Permissions that only creator can see the Quotation but when the Quotation is shared Print Option is not available.
I faced the same problem. Quotation should not be visible to everyone until and unless it is shared. But the print option is not available for that user. Please suggest.
I did a “workaround” by adapting: frappe/frappe/www/printview.py
removing the following lines in validate print preview:
for ptype in (“read”, “print”):
if (not frappe.has_permission(doc.doctype, ptype, doc)
and not frappe.has_website_permission(doc)):
raise frappe.PermissionError(_(“No {0} permission”).format(ptype))