0

如何在信息面板中为国家/地区添加选择字段product.product_normal_form_view

截图:我需要在 product.product_normal_form_view 的信息面板中添加国家选择字段,如图所示

4

2 回答 2

0

这是解决方案。

<record id="product_normal_form_view_inherit" model="ir.ui.view">
            <field name="name">product.normal.form.inherit</field>
            <field name="model">product.template</field>
            <field name="inherit_id" ref="product.product_normal_form_view"/>
            <field name="arch" type="xml"> 
                <xpath expr="//form/sheet/notebook/page[@string='Information']/group/group/field[@name='list_price']" position="after">
                     <field name="country_id"/>
                </xpath>
            </field>
</record>

于 2016-03-14T11:53:36.817 回答
0

继承product.template

你的xml文件应该是:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
        <record id="product_template_product_form_inherited" model="ir.ui.view">
            <field name="name">product.template.product.form.inherited</field>
            <field name="model">product.template</field>
            <field name="inherit_id" ref="product.product_template_only_form_view"/>
            <field name="arch" type="xml">
                <xpath expr="//page[@string='Information']/group/group" position="inside">
                        <field name='country_id'/>
                </xpath>
            </field>
        </record>
    </data>
</openerp>

python文件:

from openerp import models, fields


class product_template(models.Model):
    _inherit = 'product.template'

    country_id = fields.Many2one('res.country', 'Country')
于 2016-03-15T08:03:05.180 回答