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

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
3382
5
5月 16
4121
0
3月 15
5143
1
10月 23
1997
2
10月 23
2200