Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
3 Ответы
5756 Представления

Hello all,

In my custom module, I'm rewriting the create_from_ui method of pos.order class.

I would want to reuse the same variables already defined in the original create_from_ui method.


Here is my code in my custom module :

def create_from_ui(self, cr, uid, orders, context=None):
        _logger.error("create_from_ui NEW BEGIN")
        res =   super(pos_order, self).create_from_ui(cr, uid, orders, context=context)           
        
        #I want to use SOME VARIABLES OF THE ORIGINAL create_from_ui METHOD HERE...
        _logger.error("create_from_ui END BEGIN")
        return res


Do you know how to manage it?


Аватар
Отменить
Автор

So, like I thought, sometimes we have to rewrite a part of the code of the original method in the new one. To rebuild some variables.

Лучший ответ

Only those returned via 'res'.

Аватар
Отменить
Related Posts Ответы Просмотры Активность
2
июн. 15
9691
1
авг. 23
3418
2
дек. 22
12701
2
окт. 21
4002
0
сент. 21
4184