使用继承自定义销售仪表板(Odoo 10)

时间:2017-10-30 06:45:12

标签: python xml openerp odoo-10

我在Odoo 10中自定义销售仪表板。我想设置容器,即“已开票”,以便显示自定义模块中的值。

首先,我无法找到确切的xpath,因为我没有在视图中看到这个定义。 (视图见下文)

其次,我想显示当前用户记录的值。有人能建议我吗?

<record model="ir.ui.view" id="sales_targets_kanban_inherit_id">
        <field name="name">Sales Target Kanban Inherit</field>
        <field name="model">crm.team</field>
        <field name="inherit_id" ref="sale.crm_team_salesteams_view_kanban"/>
        <field name="arch" type="xml">
             <xpath expr="//field[@name='invoiced']" position="attributes">
             <attribute name="readonly">1</attribute>
             </xpath>    
             <xpath expr="//field[@name='invoiced_target']" position="attributes">
             <attribute name="readonly">1</attribute>
             </xpath>        

        </field>
</record>

enter image description here

我想显示我的自定义模块 - &gt; “单击设置”中的字段。这将通过python或xml完成 希望提出建议

0 个答案:

没有答案