Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
3507 Visualizzazioni

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
Abbandona
Risposta migliore

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
Abbandona
Post correlati Risposte Visualizzazioni Attività
4
gen 17
8823
1
mar 16
22613
5
mar 16
10626
2
gen 16
17148
0
giu 15
6525