0

の情報パネルに国の選択フィールドを追加するにはどうすればよいですかproduct.product_normal_form_view

スクリーンショット: この画像に示すように、product.product_normal_form_view の情報パネルに国の選択フィールドを追加する必要があります

4

2 に答える 2

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 に答える
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 に答える