Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
3999 Visualizzazioni

Hello,

I'm new to Odoo and i'm trying to search and read the application permissions of all the users using xmlrpc in python.


How can I have multiple fields separated in sections in one single xml file?


I'm trying to have one section with checkboxes and other section with text fields, and handle it in one xml file but I don't know if is posibly to do.


I would appreciate the help!

Thanks!


Avatar
Abbandona
Risposta migliore

Hi,

You can categories your fields using the <group> tag in xml.

<group>
<group string="Check Boxes">
<field name="check1"/>
<field name="check2"/>
<field name="check3"/>
</group>
<group string="Text Fields" name="texts">
<field name="taxt1">
<field name="taxt2"/>
<field name="taxt3"/>
</group>
</group>

Now in the left side list all the checkbox fields and the right side contain the text fields.

Regards

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
3
apr 19
6664
1
gen 24
13556
5
giu 20
6729
2
giu 17
6306
1
apr 16
4943