Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
3 Antworten
1256 Ansichten

hello everyone! anyone who can guide me how to convert the following code to odoo v17:


                                    {'required':[('lawyer_type','=','lawyer')]}                           

Avatar
Verwerfen
Beste Antwort

it replace in odoo 17 attrs  to required="lawyer_type == 'lawyer'" and  invisible ="lawyer_type == 'lawyer'"

try this

Avatar
Verwerfen
Beste Antwort

Hello Hamza,


I hope you're doing well.


Since Odoo 17.0, the "attrs" and "states" attributes are no longer used in the Odoo View architecture.

Instead, you can now use Python expressions that evaluate to a boolean for attributes like readonly, required, and invisible.


Old Code: {'required':[('lawyer_type','=','lawyer')]}

Migrated in V17.0: required="lawyer_type == 'lawyer'"


Kindly follow the document View architecture to understand the changes in odoo version 17.0

I hope this is helpful for you.

Thanks & Regards,

Email:   odoo@aktivsoftware.com           

Skype: kalpeshmaheshwari 


Avatar
Verwerfen
Beste Antwort

I guest this is in the xml, here is the converted code

required="lawyer_type == 'lawyer' "

Avatar
Verwerfen

Hello remember my answer come first

Verknüpfte Beiträge Antworten Ansichten Aktivität
0
Aug. 25
310
1
Jan. 25
1585
1
Nov. 24
2015
2
Sept. 24
1575
4
Sept. 24
2360