跳至内容
菜单
此问题已终结
1 回复
6523 查看

In crm.phonecall, I have following new fields.

'x_project_id': fields.many2one('res.partner','Project / Site'),
'x_email': fields.related('x_project_id', 'email', type='char', string='Email',store=False),
'x_proj_state': fields.related('x_project_id', 'state_id', string='Project State',store=False),

There is no problem in displaying x_email and x_project_id. However, when I want to get value x_proj_state in my tree view or form view

<field name="x_proj_state"  readonly="1"/>  

then it gives following error

WARNING penerp.osv.orm.browse_record.res.country.state: Field '_asdict' does not exist in object 'browse_record(res.country.state, 53)'


in res.partner state_id is described as fields.many2one('res.country.state','State'),


 

形象
丢弃
最佳答案

Hi,

Try to add type and relation :

 'x_project_state': fields.related('x_project_id', 'state_id', string="Project State", type="many2one", relation="res.country.state", store=False), 

It worked for me ...

Regards ..

形象
丢弃
相关帖文 回复 查看 活动
2
2月 25
8402
3
1月 19
7045
2
6月 15
8031
0
6月 15
3901
1
3月 15
4902