Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
3612 Zobrazení

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
Zrušit
Nejlepší odpověď

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
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
4
led 17
8940
1
bře 16
22784
5
bře 16
10793
2
led 16
17309
0
čvn 15
6679