Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
3 Відповіді
12848 Переглядів

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  "

 

Аватар
Відмінити
Найкраща відповідь

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)

 

Аватар
Відмінити
Автор

Thank you very much. This is the best answer

Найкраща відповідь

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))

Аватар
Відмінити
Найкраща відповідь

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

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
вер. 23
6340
Insert query in odoo 13 Вирішено
1
лип. 20
5106
0
груд. 23
8242
0
бер. 15
3352
0
бер. 15
3578