【发布时间】:2015-07-07 08:19:20
【问题描述】:
我是 Odoo 的新手,我正在寻找一种在客户发票概览中添加/编辑列的方法。
有人知道要编辑哪些文件吗?或者如何调用这个“概览屏幕”以便我更好地查看?
概览屏幕截图链接:http://oi58.tinypic.com/2prtyk0.jpg
提前致谢!
【问题讨论】:
-
现在我发现了树视图的位置,我想添加我的字段“levertermijn”。我尝试了以下代码:
<record model="ir.ui.view" id="invoice_tree"> <field name="name">account.invoice.tree.inherit</field> <field name="model">account.invoice</field> <field name="inherit_id" ref="account.invoice_tree_view"/> <field name="arch" type="xml"> <field name="state" position="after"> <field name="levertermijn"/> </field> </field> </record>这给出了错误:ParseError: "External ID not found in the system: account.invoice_tree_view" while parsing...