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

This is not a question, it is a hint I found useful to share.

I needed to customize the confirm button functionality in a Purchase Order by saving a special account # in the account_id field. My first problem was that I don't know the sequence of the of methods called to know where to put my update. I tried the idea to inherit the account_invoice class and put a breakpoint on the 'create' and 'write' methods, just to stop the calling flow and examine the code sequence.

I added this peice of code just to put a breakpoint to enable me do the trace

class account_invoice(osv.osv):
    _inherit = "account.invoice"
    def create(self, cr, uid, vals, context=None):
        return super(account_invoice, self).create(cr, uid, vals, context=context)

    def write(self, cr, uid, ids, vals, context=None):
        res = super(account_invoice, self).write(cr, uid, ids, vals, context=context)
        return res
account_invoice()

아바타
취소
관련 게시물 답글 화면 활동
3
11월 20
11532
1
7월 17
5015
1
3월 15
5514
1
3월 15
5342