の情報パネルに国の選択フィールドを追加するにはどうすればよいですかproduct.product_normal_form_view
質問する
873 次
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 に答える