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

I would like to change the label of a field called "target_field", if the selection field contract_type changed the value to sale. This belongs to the view of the contract_type:

<field name="contract_type" on_change="on_change_contract_type(contract_type)"/>
<field name="target_field">

And here the corresponding on_change method.

def on_change_contract_type(self, cr, uid, ids, contract_type, context={}):
    res={}
    if contract_type == 'sale':
        res['target_field']['label'] = 'Sales Contract'
    return {'value': res}

I know it doesn't work, because ['label'] does not excist. But is there any way, to set it by code? An other option which is working is to play with attrs und invisible attributes directly in the xml file, but it is a bad coding design approach in my opinion.

아바타
취소

I just bumped into the same issue. I will keep an eye on this post, or if I find the solution I will return with it.

베스트 답변

Another way would be using two label fields:

<field name="contract_type"/>
<label for="target_field" attrs="{'invisible': [('contract_type', '=', 'sale')]}"/>
<label string="Sales Contract" attrs="{'invisible': [('contract_type', '!=', 'sale')]}"/>
<field name="target_field" nolabel="1"/>

No onchange method is needed this way.

Regards.

아바타
취소

An excelent solution. On the other hand, I needed to take the labels from a custom product details table. So, I needed the onchange event. But your solution is much more appropriate for Gregor's need.

베스트 답변

I have found a solution that works for me.

  • I have created an additional field of type char where I will store the label
  • In the onchange method I am setting the value for this field
  • In the XML file you have to put nolabel="1" for both fields (label and target field) and the label field will also have readonly="1"

So, your XML file will look like this:

   <field name="contract_type" on_change="on_change_contract_type(contract_type)"/>
   <field name="label_field" readonly="1" nolabel="1" />
   <field name="target_field" nolabel="1" />

In this way, after the onchange event takes place, the label field will be displayed with the computed value and it will look like an actual label.

아바타
취소
관련 게시물 답글 화면 활동
0
6월 22
1804
0
1월 21
2906
0
11월 19
4954
10
6월 16
33230
1
10월 15
9418