Python 如何在列表视图xml odoo中显示结果soap?

Python 如何在列表视图xml odoo中显示结果soap?,python,xml,soap,odoo,suds,Python,Xml,Soap,Odoo,Suds,我使用python语言开发了一个新的odoo模块,并使用库SUD使用web服务wsdl: 它向我展示了以下结果 [(GroupSoap){ active = True classNameId = 10005 classPK = 10198 companyId = 10154 creatorUserId = 10198 description = None friendlyURL = "/test" groupId = 10202 liveGroupId = 0 uuid =

我使用python语言开发了一个新的odoo模块,并使用库SUD使用web服务wsdl: 它向我展示了以下结果

[(GroupSoap){
 active = True
 classNameId = 10005
 classPK = 10198
 companyId = 10154
 creatorUserId = 10198
 description = None
 friendlyURL = "/test"
 groupId = 10202
 liveGroupId = 0
 uuid = "9241b7bc-0c83-4aa5-8878-3dbf1bc43f6f"
我希望在以下代码中描述的视图xml odoo中显示此结果:

<record model="ir.ui.view" id="document_tree_view">
 <field name="name">document.tree.view</field>
 <field name="model">document_binov.document_binov</field>
 <field name="type">tree</field>
 <field name="arch" type="xml">
  <tree string="Documents">
       <field name="titre"/>
       <field name="description"/>
       <field name="type" />
  </tree>
 </field>
</record> 

document.tree.view
文件
树
请帮帮我