我使用python语言开发odoo的新模块,我使用库suds来使用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>
请帮帮我