İçereği Atla
Menü
Bu soru işaretlendi
3 Cevaplar
12454 Görünümler

In the below fuction I want to update  "account_bank_statement" table field balance_end_real with the vale balance_end. i.e "update account.bank.statement set balance_end_real=balance_end where id=ids"

 

"def _compute_difference(self, cr, uid, ids, fieldnames, args, context=None):
        result =  dict.fromkeys(ids, 0.0)

        for obj in self.browse(cr, uid, ids, context=context):
            
            result[obj.id] = obj.balance_end_real - obj.balance_end

        return result  "

 

Avatar
Vazgeç
En İyi Yanıt

It seems that balance_end_real field already in the same model (or inherited) with the method you defined. In that case you don't need to use update sql manually, just use write method.

self.write(cr, uid, ids, {'balance_end_real': obj.balance_end}, context=context)

 

Avatar
Vazgeç
Üretici

Thank you very much. This is the best answer

En İyi Yanıt

Hi,

You can use "cr.execute" to update record based on id. Refer the following example:

cr.execute('update account_period set state=%s where id=%s', (mode, id))

Avatar
Vazgeç
En İyi Yanıt

Use "cr.execute" and update directly using sql update statement...

Avatar
Vazgeç
İlgili Gönderiler Cevaplar Görünümler Aktivite
0
Eyl 23
5965
1
Tem 20
4750
0
Ara 23
7826
0
Mar 15
3095
0
Mar 15
3197