Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
1 Beantwoorden
3274 Weergaven

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?




Avatar
Annuleer
Beste antwoord

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

Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
4
jan. 17
8508
1
mrt. 16
22251
5
mrt. 16
10219
2
jan. 16
16909
0
jun. 15
6202