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

时间:2015-05-25 12:57:43

标签: python xml soap odoo suds

我使用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> 

请帮帮我

0 个答案:

没有答案