Skip to Content
Menu
This question has been flagged
1 Odpoveď
6760 Zobrazenia

Dear all,

Here i want inherit auth_signup controller class "AuthSignupHome" in a custom module. i tried this following codes, but i got error which is 

class custom_signup(openerp.addons.auth_signup.controllers.main.AuthSignupHome):

a) 'module' object has no attribute 'auth_signup'

b)Couldn't load module 'custom_module'


Please give any suggestions

thanks in advance

Avatar
Zrušiť
Best Answer

Hello Jothimani

Try following:

import openerp

from openerp.addons.auth_signup.controllers.main import AuthSignupHome

class my_class(AuthSignupHome):

    <custom code>


Hope this helps !!.

Avatar
Zrušiť
Related Posts Replies Zobrazenia Aktivita
1
feb 23
12154
0
dec 15
6448
0
jún 15
3156
0
apr 15
3681
0
mar 15
9767