跳至內容
選單
此問題已被標幟
1 回覆
6633 瀏覽次數

Note (Sorry for question because i'm new in Odoo)

how to declear osv.osv and osv.osv_memory and osv.TransientModel
in Odoo 10.

some developer use old and new style with combine.
i want to know complete list of new development by Odoo 10 as well compare others

can any one tell me
how to deal with osv.osv_memory and osv.osv in new api ???
just like Odoo replace __openerp__.py to __manifest__.py as well as import openerp to import Odoo
i want to know all list of replace by Odoo in new style api developement for odoo 10
Explain complete list...
for Example
1)    __openerp__.py   replace by __manifest__.py

2)    osv.osv_memory replace by osv.TransitModel
3)    osv.osv                replace by  i don't know

)
if i'm wrong please correct list and add more ....

頭像
捨棄
最佳答案

No need to be sorry!!

osv.osv and orm.Model is deprecated and it still works for backward compatibility. You should use models.Model instead.

In Odoo 6, Odoo 7, Odoo 8, Odoo 9, Odoo 10

1)  osv.osv(6) -------->  orm.Model(7)    ----------> models.Model(8,9,10)

2)  osv.osv_memory(6) --------->  orm.TransientModel(7)   ----------> models.TransientModel(8,9,10)



頭像
捨棄
作者

thanks for answer....

can you tell me use of models.AbstractModel ?????

相關帖文 回覆 瀏覽次數 活動
3
4月 22
17805
2
4月 19
4257
0
2月 17
2872
0
1月 17
2791
1
8月 25
269