Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
3409 มุมมอง

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

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
Big Problem with many2many fields! แก้ไขแล้ว
4
ม.ค. 17
8683
1
มี.ค. 16
22463
5
มี.ค. 16
10445
2
ม.ค. 16
17027
0
มิ.ย. 15
6406