When viewing the permission sample of the client, the client does not want to view remark information. The client in the Management Interface disables the rights-related remarks, but it can still see remark comments. How should it be set up?
it may also need to customize in “bika/lims/content/analysisrequest.py”
change “read_permission = FieldEditRemarks,”
I tried it. but also not works. very strange.
RemarksField(
'Remarks',
read_permission=View,
write_permission=FieldEditRemarks,
widget=RemarksWidget(
label=_("Remarks"),
description=_("Remarks and comments for this request"),
render_own_label=True,
visible={
'add': 'edit',
'header_table': 'invisible',
},
),
),