コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
13967 ビュー

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
1797
0
1月 21
2905
0
11月 19
4952
10
6月 16
33228
1
10月 15
9416