콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
3831 화면

Is there a way to define a specific field as readonly on products and customers? I.e. a payment method is created for a customer and only those with access to change this field should be able to change the field. All other fields on the customer like address are writable by regular users.

아바타
취소
베스트 답변

Hi Sean Samborski,

You can write the fields as below:

'approved': fields.boolean('Approved', write=['base.group_sale_manager']),

And in xml as normal fields without any readonly or groups.

<field name="approved"/>

This won't be readonly field. But it is writable only to the users having sale manager access rights.

If you don't want to show this field to the users having no access rights, better write as normal fields and assign groups in xml file.

아바타
취소
작성자

+1 this sounds really great. Where would I put the first snippet you added?

Inherit the model product and customer, add the above field in py file.

베스트 답변

You Can Specify Group in xml for that particular field.

<field name="date"  readonly="1" groups="base.group_user"/>

where group_user is the name of the group and base is the module in which group is defined. Then

아바타
취소
관련 게시물 답글 화면 활동
2
3월 15
5902
0
1월 23
1454
3
3월 22
17746
1
3월 15
6402
4
6월 24
3450