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

Am trying to define a method that calculates the amount for each line of purchase like this :

def _myMethod():
    res = {}
    for x in self.browse(cr, uid, ids):
        res[bo] = x.value * xyz 
    return res

And it is giving me a NameError. Please does anyone know why am getting this error and how to fix it.

Thank you

Аватар
Відмінити
Найкраща відповідь
def _myMethod():
    res = {}
    for x in self.browse(cr, uid, ids):
        res[x.id] = x.value * xyz 
    return res

apart from this what are the arguments of def _myMethod():

Cheers,

Parthiv

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

Thanks Parthiv, this was helpful

You are welcome :)