콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
2991 화면

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?

아바타
취소
베스트 답변

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

 

아바타
취소
관련 게시물 답글 화면 활동
1
8월 25
443
1
8월 25
679
2
7월 25
3175
3
7월 25
810
1
6월 25
2344