Odoo:在哪里编辑客户发票的概述?

时间:2015-07-07 08:19:20

标签: openerp odoo invoices

我是Odoo的新手,我正在寻找在客户发票概览中添加/编辑列的方法。

有谁知道要编辑哪些文件?或者这个"概述屏幕"被叫,所以我可以更好地查找它?

链接到概览屏幕的屏幕截图:http://oi58.tinypic.com/2prtyk0.jpg

提前致谢!

2 个答案:

答案 0 :(得分:0)

这个" TREE"的观点在

中定义
addons/account/views/account_invoice_view.xml 

其代码如下:

        <record id="invoice_tree" model="ir.ui.view">
        <field name="name">account.invoice.tree</field>
        <field name="model">account.invoice</field>
        <field name="arch" type="xml">
            <tree decoration-info="state == 'draft'" decoration-muted="state == 'cancel'" string="Invoice">
                <field name="partner_id" groups="base.group_user" string="Customer"/>
                <field name="date_invoice"/>
                <field name="number"/>
                <field name="commercial_partner_id" invisible="1"/>
                <field name="reference" invisible="1"/>
                <field name="name" invisible="1"/>
                <field name="journal_id" invisible="1"/>
                <field name="company_id" groups="base.group_multi_company" options="{'no_create': True}"/>
                <field name="user_id"/>
                <field name="date_due"/>
                <field name="origin"/>
                <field name="amount_total_signed" sum="Total Amount"/>
                <field name="residual_signed" sum="Residual Amount"/>
                <field name="currency_id" invisible="1"/>
                <field name="company_currency_id" invisible="1"/>
                <field name="state"/>
                <field name="type" invisible="context.get('type',True)"/>
            </tree>
        </field>
    </record>

答案 1 :(得分:0)

我建议您使用开发人员模式来了解您想要更改/编辑/继承/等的视图名称,

转到管理员=&gt;关于Odoo =&gt;激活开发者模式然后返回到视图,您会在当前视图的名称附近看到名称为Debug View#xx下拉列表,然后点击该选项{{1之后你将看到当前视图的定义,这样你就会知道你需要继承/编辑/等等的视图。

我希望这会对你有所帮助!