[SOLVED] 继承添加 many2one 字段
-
参考<br / http://simahawk.wordpress.com/2010/10/04/openerp-how-to-add-a-custom-field-to-an-object/ br / http://www.openerp.com/forum/topic7320.html br />
写了一个模块 purchase_discount.zip
purchase_discount.py:<br />from osv import fields, osv<br /><br />class purchase_order_line(osv.osv):<br /> _inherit = "purchase.order.line"<br /> _columns = { <br /> 'test': fields.char('TEST', size=30, help="Inherited field"),<br /> 'x_ref': fields.many2one('hr.employee', 'XRef.'), [color=red]# 问题出现在这里 x_ 前缀[/color]<br /> } <br />purchase_order_line() <br /><br />
安装模块后, 在客户端 Administration-> Customization->Database Structure-> Objects-> purchase.order.line : 可以看见test 和 x_ref 字段已经新"添加"
但是用pgadmin3 查看purchase_order_line, 却只有test 插入表中, x_ref 却没有成功.
在代码上还有要注意的地方么?
卸载模块后怎么才能让新添加的字段 test 也跟着删除?
Thanks ! -
@yurenjimi
这个问题与继承字段的类型没有关系,而与你所起的字段名有关。‘x_'打头的字段名是'custom field' 专属的,也就是你在openerp系统管理-自定义中所创建的字段,你应该注意到在这里面创建的字段,字段名都被强制使用'x_'打头,并且将字段的state强制设为‘manual’,在这里创建的字段只会保存到'ir_model_fields'表中而不会创建到所属model对应的表中。
只要将名字改成非'x_'起头,你的问题应该就解决了