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

I have a form with:

    <field name="qty" on_change="onchange_transaction(tr_id, qty)"/>

relevant code:

@api.depends('amount','subtotal','vat','total')

    def onchange_transaction(self, cr, uid, ids, tr_id, qty, context=None):

    # some code here which is calculating my receipt

    res = { 'value': {'amount':locamount , 'subtotal':locsubtotal , 'vat': locvat , 'total':loctotal} }

    return res

fields declarations :

'amount':fields.float('Amount', store=True, readonly=True),

'qty':fields.integer('Qty'),

'subtotal':fields.float('Sub Total', store=True, readonly=True ),

'vat':fields.float('VAT', store=True, readonly=True),

'total':fields.float('Total', store=True, readonly=True),

On editing my form and logic is behaving fine up to the point of saving. If I alter the quantity my form is picking the newly calculated amount BUT when I save figures revert to old amount. This problem only happens on editing a record. It does not happen on a new record.


아바타
취소
관련 게시물 답글 화면 활동
0
8월 20
3500
5
5월 16
4228
0
3월 15
5215
1
10월 23
2091
2
10월 23
2330