跳至內容
選單
此問題已被標幟
1 回覆
22898 瀏覽次數

base.group_user can edit project.issue in every stage. portal.group_portal can edit SOME fields of the issue only in NEW stage. In two other stages (of all 7) portal user can press buttons Accept or Reject and change the stage value of the issue. I can't limit rights to record, because I need to change the value of the stage. I think I have to limit rights to some fields on the view.xml:

if the user group = portal.group_portal and stage_id != new readonly="1"

How to implement this condition to a single field?

頭像
捨棄
最佳答案

add this code in your xml file

 <field name="field_name"  attrs="{'readonly':[('stage_id','!=','new')]}"/>

and in your python file, specify

field_name :  fields.char('Field Label',size=32,read=['portal.group_portal'])
頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
3
12月 23
90985
3
9月 21
5094
1
6月 19
7647
11
9月 16
19584
1
9月 15
8942