Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
2864 Widoki

Hi, i have a problem. When i create a project via project->create 2 projects are created. How this can be fixed?

Awatar
Odrzuć
Najlepsza odpowiedź

Hi daouda,

I have faced this kind of problem before. And I came to know that I've override create() method & then called super() and in return value I called super. So because of calling super two times I got record created two times.

Here is my problematic code,

def create(self, cr, uid, vals, context=None):
    # My calculation & code
    res = super(class_name, self).create(cr, uid, vals, context)
    return super(class_name, self).create(cr, uid, vals, context)

By calling super two times record was created twice.

Instead that I did like this,

def create(self, cr, uid, vals, context=None):
    # My calculation & code
    res = super(class_name, self).create(cr, uid, vals, context)
    return res

I am not sure you have done like this or not? But it is my suggestion, it is one of the possibility which is why records are created two times.

Hope this is helpful to solve your problem.

Thanks.

Awatar
Odrzuć