Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
3026 Lượt xem

I would like to inherit purchase.order to add a custom action method for a workflow.  Do I need to code everything in the old API like

self.write(cr, uid, ids, {'state': 'approved'})

or can I code things like

self.state='approved'

?  Is there a standard way to do this?

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

In new API you should use

self.write({'state': 'approved'})

or

self.state='approved'

If you write many values better way (only one trigger a write action) is:

self.write({’x’:1,’y’:2,’z’:4})

See:
https://media.readthedocs.org/pdf/odoo-new-api-guide-line/latest/odoo-new-api-guide-line.pdf
https://github.com/nbessi/odoo_new_api_guideline
https://www.odoo.com/documentation/8.0/reference/orm.html

 

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 8 25
503
1
thg 8 25
704
2
thg 7 25
3238
3
thg 7 25
867
1
thg 6 25
2386