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

Can anyone help me how to hide or disable Edit and/or Create button when my workflow status value is "Done"

I have workflow status "Draft > Approval > Confirmed > Done"

so when status is Done i want 'Edit' to be hidden or disabled.

Please help. thanks in advance.

아바타
취소
베스트 답변

Add edit="false" in form view.

<form string="XXX" edit="false">
</form>
아바타
취소
베스트 답변

Have you seen "Web Access Rules Buttons" at https://www.odoo.com/apps/modules/9.0/web_access_rule_buttons/

This addon disables the Edit button on the form views if the user cannot edit the current record according to the record access rules.


아바타
취소
베스트 답변

You can add this in your form views:

<field name="context">{'form_no_edit':[('state','=','done')]}</field> 


아바타
취소
베스트 답변

You can also put in your definition view:

<form string="Some text" version="7.0" create="false" delete="false">
</form>


With this you can hide the create/edit button and the delete option in the More dropdown button.

This option will disable the buttons for everyone.  Maybe Ray's solution it's more suitable for your needs.


:)

아바타
취소
관련 게시물 답글 화면 활동
0
10월 16
3339
0
10월 16
2855
0
9월 23
1921
2
9월 23
7555
0
9월 23
1611