Skip to Content
Menu
This question has been flagged
1 Reply
8217 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 ? :)

Related Posts Replies Views Activity
1
Mar 19
18795
2
Nov 16
3632
3
Feb 20
9974
3
Dec 19
6019
1
Nov 24
1615