This question has been flagged
1 Reply
6814 Views

class Abstract(models.AbstractModel):

        _name = 'abstract'

        def doSomething():

in the another module I write

class Abstract2(models.AbstractModel):

        _inherit = 'abstract'

        def doSomething():

the new extended method doSomething() does not execute.


Please suggest me the solution.

Thanks in advance. 

Avatar
Discard
Best Answer

Have you found a solution?

Avatar
Discard

Have you found the solution ? :)