跳至内容
菜单
此问题已终结
4026 查看

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
11056
1
7月 17
4806
1
3月 15
5254
1
3月 15
5097