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

This is the api for odoo8?


from openerp import models, fields, api

class hr_timesheet_sheet(models.Model):

_inherit = ["hr_timesheet_sheet.sheet"]

    project_field = fields.Many2one('project.project', 'name') 

and this the old one?:

from openerp.osv import osv, fields, api

class hr_timesheet_sheet(osv.osv):

_inherit = ["hr_timesheet_sheet.sheet"]

_columns = {

'project_field': fields.many2one('project.project', 'name')

}


What should I use for odoo8 and why?




形象
丢弃
最佳答案

The two codes works even on v9, the first is written using the new api and the second the old api style. There is a discussion around that Odoo will clean up their codebase for v10 to only support the new api style so I suggest you that use the first code

形象
丢弃
相关帖文 回复 查看 活动
4
1月 17
8487
1
3月 16
22232
5
3月 16
10195
2
1月 16
16885
0
6月 15
6199