跳至內容
選單
此問題已被標幟
1 回覆
3993 瀏覽次數

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!


頭像
捨棄
最佳答案

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

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
3
4月 19
6659
1
1月 24
13548
5
6月 20
6718
2
6月 17
6302
1
4月 16
4925