Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
2 Відповіді
13983 Переглядів

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.

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
черв. 22
1806
0
січ. 21
2906
0
лист. 19
4955
10
черв. 16
33231
1
жовт. 15
9418